:root {
    --black: #000000;
    --white: #ffffff;
    --transition: cubic-bezier(0.76, 0, 0.24, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

html:has(body.toronto-page) {
    scroll-padding-top: 0;
    scroll-snap-type: y proximity;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--black);
    background: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
}

.entry-page {
    min-height: 100vh;
    overflow: hidden;
}

.entry-page::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(255, 255, 255, 0.72);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s var(--transition);
}

.entry-page.is-welcome::before,
.entry-page.is-ready::before {
    opacity: 1;
}

.splash {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--white);
    opacity: 1;
    pointer-events: none;
    transition:
        opacity 1.25s var(--transition),
        visibility 1.25s var(--transition);
}

.splash img {
    width: min(82vw, 1320px);
    height: auto;
    max-height: 74vh;
    object-fit: contain;
    transform: scale(1);
    transition: transform 1.35s var(--transition);
}

.entry-page.is-welcome .splash,
.entry-page.is-ready .splash {
    visibility: hidden;
    opacity: 0;
}

.entry-page.is-welcome .splash img,
.entry-page.is-ready .splash img {
    transform: scale(1.045);
}

.entry-welcome {
    position: fixed;
    inset: 0;
    z-index: 8;
    display: grid;
    place-content: center;
    gap: clamp(16px, 3vw, 28px);
    padding: 24px;
    text-align: center;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 1.7s var(--transition),
        filter 1.7s var(--transition),
        transform 1.7s var(--transition),
        visibility 1.7s var(--transition);
    visibility: hidden;
}

.entry-welcome p,
.entry-welcome h1 {
    margin: 0;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
    transition:
        opacity 1.9s var(--transition),
        filter 1.9s var(--transition),
        transform 1.9s var(--transition);
}

.entry-welcome p {
    font-size: clamp(0.85rem, 1.3vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.entry-welcome h1 {
    font-size: clamp(2.4rem, 7vw, 7rem);
    font-weight: 300;
    letter-spacing: 0;
}

.entry-page.is-welcome .entry-welcome {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    visibility: visible;
}

.entry-page.is-welcome .entry-welcome p,
.entry-page.is-welcome .entry-welcome h1 {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.entry-page.is-welcome .entry-welcome p:first-child {
    transition-delay: 0.35s;
}

.entry-page.is-welcome .entry-welcome h1 {
    transition-delay: 2.05s;
}

.entry-page.is-welcome .entry-welcome p:nth-of-type(2) {
    transition-delay: 3.85s;
}

.entry-page.is-welcome .entry-welcome p:nth-of-type(3) {
    transition-delay: 5.65s;
}

.entry-page.is-ready .entry-welcome {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-8px);
    visibility: hidden;
}

.entry-page.is-ready .entry-welcome p,
.entry-page.is-ready .entry-welcome h1 {
    transition-delay: 0s;
}

.skip-intro {
    position: fixed;
    bottom: 28px;
    left: 30px;
    z-index: 20;
    padding: 0 0 7px;
    border: 0;
    border-bottom: 1px solid currentColor;
    color: rgba(0, 0, 0, 0.72);
    background: transparent;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.72;
    transition:
        color 0.35s ease,
        opacity 0.45s ease,
        transform 0.35s var(--transition),
        visibility 0.45s ease;
}

.skip-intro:hover,
.skip-intro:focus-visible {
    color: var(--black);
    opacity: 1;
    transform: translateY(-3px);
}

.entry-page.is-ready .skip-intro {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.location-home {
    position: relative;
    display: grid;
    min-height: 100vh;
    overflow: hidden;
    place-items: center;
    gap: clamp(32px, 6vw, 72px);
    padding: clamp(28px, 5vw, 56px);
    opacity: 0;
    filter: blur(10px);
    transform: translateY(14px);
    transition:
        opacity 2s var(--transition) 0.85s,
        filter 2s var(--transition) 0.85s,
        transform 2s var(--transition) 0.85s;
}

.location-home::after {
    position: fixed;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 14%, transparent 31%, transparent 69%, rgba(0, 0, 0, 0.08) 86%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.48) 47%, rgba(255, 255, 255, 0.48) 53%, rgba(255, 255, 255, 0.28) 100%);
    content: "";
    pointer-events: none;
}

.city-video-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 50vw;
    overflow: hidden;
    opacity: 0.42;
    pointer-events: none;
}

.city-video-panel::after {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.26);
    content: "";
}

.city-video-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) blur(1.5px) saturate(0.65);
    transform: scale(1.045);
}

.city-video-panel--toronto {
    left: 0;
}

.city-video-panel--zagreb {
    right: 0;
}

.entry-page.is-ready .location-home {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.site-topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 7;
    height: 88px;
    opacity: 1;
    pointer-events: auto;
    transition:
        opacity 0.55s var(--transition),
        transform 0.55s var(--transition),
        visibility 0.55s ease;
}

.site-topbar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
}

.home-logo {
    position: absolute;
    top: 28px;
    left: 30px;
    display: grid;
    gap: 4px;
    width: fit-content;
    color: rgba(0, 0, 0, 0.76);
    font-size: clamp(1rem, 1.4vw, 1.28rem);
    line-height: 1;
    opacity: 0.88;
}

.home-logo .flow-serif {
    font-size: 1.06em;
}

.home-logo .line-sans {
    font-size: 0.88em;
    font-style: italic;
}

.home-logo-place {
    display: block;
    margin-left: 0.16em;
    color: rgba(0, 0, 0, 0.58);
    font-size: 0.48em;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.top-menu {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 9;
}

.top-menu details {
    position: relative;
}

.top-menu summary {
    display: grid;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
    cursor: pointer;
    list-style: none;
}

.top-menu summary::-webkit-details-marker {
    display: none;
}

.top-menu span {
    display: block;
    height: 1px;
    background: currentColor;
    color: rgba(0, 0, 0, 0.68);
    transform-origin: left center;
    transition:
        opacity 0.3s ease,
        transform 0.3s var(--transition);
}

.top-menu span:nth-child(2) {
    width: 22px;
}

.top-menu span:nth-child(3) {
    width: 16px;
}

.top-menu summary:hover span,
.top-menu summary:focus-visible span {
    transform: scaleX(1.12);
}

.top-menu details[open] summary span:nth-child(1) {
    transform: translateY(7px) rotate(42deg);
}

.top-menu details[open] summary span:nth-child(2) {
    opacity: 0;
}

.top-menu details[open] summary span:nth-child(3) {
    width: 28px;
    transform: translateY(-7px) rotate(-42deg);
}

.top-menu-panel {
    position: absolute;
    top: 34px;
    left: 0;
    display: grid;
    gap: 0;
    min-width: 210px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(250, 250, 247, 0.84);
    backdrop-filter: blur(22px) saturate(1.08);
    box-shadow: 0 24px 70px rgba(20, 32, 30, 0.14);
}

.top-menu-panel a {
    padding: 12px 14px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.top-menu-panel a:hover,
.top-menu-panel a:focus-visible {
    color: rgba(0, 0, 0, 0.94);
    background: rgba(255, 255, 255, 0.54);
}

.toronto-page .home-logo {
    top: 14px;
    left: 50%;
    font-size: clamp(1.32rem, 1.9vw, 1.72rem);
    text-align: center;
    transform: translateX(-50%);
}

.toronto-page .home-logo-place {
    margin-left: 0;
}

.toronto-page .entry-status {
    top: 30px;
    right: 30px;
    left: auto;
    justify-content: flex-end;
    gap: clamp(12px, 2.4vw, 30px);
    width: min(58vw, 640px);
    text-align: right;
    transform: none;
}

.entry-status {
    position: absolute;
    top: clamp(24px, 4vw, 44px);
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 42px);
    width: min(92vw, 760px);
    color: rgba(0, 0, 0, 0.68);
    font-size: clamp(0.68rem, 1vw, 0.82rem);
    font-weight: 300;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.weather-status {
    position: relative;
    z-index: 8;
    cursor: default;
    outline: none;
}

.weather-status::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.45s var(--transition);
}

.weather-status:hover::after,
.weather-status:focus::after,
.weather-status:focus-within::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.weather-forecast {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 30;
    display: grid;
    gap: 0;
    width: min(82vw, 420px);
    max-height: min(70svh, 360px);
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.72);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px) saturate(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 22px 58px rgba(20, 32, 30, 0.12);
    color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    filter: blur(8px);
    overflow-y: auto;
    pointer-events: none;
    text-align: left;
    text-transform: uppercase;
    transform: translate(-50%, 8px);
    transition:
        opacity 0.45s var(--transition),
        filter 0.45s var(--transition),
        transform 0.45s var(--transition);
}

.weather-forecast::-webkit-scrollbar {
    width: 6px;
}

.weather-forecast::-webkit-scrollbar-track {
    background: transparent;
}

.weather-forecast::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.16);
}

.weather-status:hover .weather-forecast,
.weather-status:focus .weather-forecast,
.weather-status:focus-within .weather-forecast {
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.weather-forecast span {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: baseline;
    min-height: 42px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.weather-forecast span:last-child {
    border-bottom: 0;
}

.weather-forecast strong,
.weather-forecast em,
.weather-forecast b {
    font: inherit;
    letter-spacing: 0.12em;
}

.weather-forecast em {
    overflow: hidden;
    color: rgba(0, 0, 0, 0.55);
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.weather-forecast b {
    color: rgba(0, 0, 0, 0.72);
    text-align: right;
}

.top-links {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(0, 0, 0, 0.62);
}

.top-links a {
    opacity: 0.58;
    transition:
        opacity 0.35s ease,
        transform 0.35s var(--transition);
}

.top-links a:hover,
.top-links a:focus-visible {
    opacity: 1;
    transform: translateY(-2px);
}

.top-about {
    position: relative;
    padding-bottom: 7px;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.top-about::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0.28);
    transform-origin: center;
    transition: transform 0.45s var(--transition);
}

.top-about:hover::after,
.top-about:focus-visible::after {
    transform: scaleX(1);
}

.top-icon-link {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
}

.top-icon-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.home-journey {
    position: relative;
    z-index: 2;
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    justify-items: center;
}

.home-journey p {
    margin: 0;
    color: rgba(0, 0, 0, 0.58);
    font-size: clamp(0.68rem, 0.9vw, 0.82rem);
    font-weight: 400;
    letter-spacing: 0.22em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.location-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 5vw, 86px);
}

.location-nav a,
.location-back {
    position: relative;
    color: var(--black);
    font-size: clamp(1.1rem, 2.2vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.location-nav a {
    display: grid;
    min-width: clamp(170px, 18vw, 260px);
    min-height: clamp(86px, 10vw, 132px);
    place-items: center;
    border: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
    backdrop-filter: blur(18px);
    box-shadow:
        0 24px 90px rgba(255, 255, 255, 0.18),
        0 18px 58px rgba(0, 0, 0, 0.025);
}

.location-nav a::after,
.location-back::after {
    position: absolute;
    right: 0;
    bottom: clamp(18px, 2vw, 26px);
    left: 0;
    width: 56px;
    margin: 0 auto;
    height: 1px;
    background: var(--black);
    content: "";
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.5s var(--transition);
}

.location-nav a:hover::after,
.location-nav a:focus-visible::after,
.location-back:hover::after,
.location-back:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.home-contact {
    position: fixed;
    right: 50%;
    bottom: 64px;
    z-index: 3;
    padding-bottom: 8px;
    border: 0;
    color: rgba(0, 0, 0, 0.78);
    background: transparent;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateX(50%);
    transition:
        color 0.35s ease,
        transform 0.35s var(--transition);
}

.home-contact::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0.28);
    transform-origin: center;
    transition: transform 0.45s var(--transition);
}

.home-contact:hover,
.home-contact:focus-visible {
    color: var(--black);
    transform: translate(50%, -4px);
}

.home-contact:hover::after,
.home-contact:focus-visible::after {
    transform: scaleX(1);
}

.contact-panel {
    position: fixed;
    right: 50%;
    bottom: 108px;
    z-index: 6;
    width: min(84vw, 320px);
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translate(50%, 12px);
    transition:
        opacity 0.45s var(--transition),
        transform 0.45s var(--transition);
}

.contact-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(50%, 0);
}

.contact-close,
.contact-form button {
    border: 0;
    background: transparent;
    color: var(--black);
    font: inherit;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-close {
    display: block;
    margin: 0 0 16px auto;
    padding: 0;
    color: rgba(0, 0, 0, 0.58);
}

.contact-form {
    display: grid;
    gap: 16px;
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.45s var(--transition),
        transform 0.45s var(--transition);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: rgba(0, 0, 0, 0.58);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 6px 0;
    color: var(--black);
    background: transparent;
    font: inherit;
    font-size: 0.95rem;
    letter-spacing: 0;
    outline: none;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--black);
}

.contact-form button {
    position: relative;
    width: fit-content;
    margin: 6px auto 0;
    padding: 0 0 8px;
}

.contact-form button::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0.34);
    transform-origin: center;
    transition: transform 0.45s var(--transition);
}

.contact-form button:hover::after,
.contact-form button:focus-visible::after {
    transform: scaleX(1);
}

.contact-form button:disabled {
    cursor: default;
    opacity: 0.55;
}

.contact-thanks {
    position: absolute;
    inset: 50% 24px auto;
    margin: 0;
    color: rgba(0, 0, 0, 0.78);
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.14em;
    line-height: 1.7;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(calc(-50% + 12px));
    transition:
        opacity 0.65s var(--transition),
        transform 0.65s var(--transition);
}

.contact-panel.is-sent {
    min-height: 210px;
}

.contact-panel.is-sent .contact-form {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

.contact-panel.is-sent .contact-thanks {
    opacity: 1;
    transform: translateY(-50%);
}

.location-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.location-logo {
    width: min(92vw, 1400px);
    max-height: 82vh;
    object-fit: contain;
}

.location-back {
    position: fixed;
    top: 92px;
    left: 30px;
    z-index: 5;
    font-size: 0.72rem;
}

.sound-toggle {
    position: fixed;
    right: 30px;
    bottom: 28px;
    z-index: 20;
    padding: 0 0 7px;
    border: 0;
    border-bottom: 1px solid currentColor;
    color: rgba(0, 0, 0, 0.72);
    background: transparent;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.72;
    transition:
        color 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s var(--transition);
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
    color: var(--black);
    opacity: 1;
    transform: translateY(-3px);
}

.toronto-page {
    background: #f7f7f5;
    color: #101010;
}

.page-video-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.page-video-background::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
    content: "";
}

.page-video-background .city-video-panel {
    opacity: 0.34;
}

.toronto-page .page-video-background .city-video-panel--toronto {
    right: 0;
    left: 0;
    width: 100vw;
}

.page-video-background .city-video-panel::after {
    background: transparent;
}

.toronto-entry {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 30px;
}

.toronto-nav {
    display: grid;
    gap: clamp(24px, 4vw, 44px);
    text-align: center;
}

.toronto-nav a {
    position: relative;
    color: var(--black);
    font-size: clamp(2rem, 6vw, 6.5rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 0.95;
    text-transform: uppercase;
}

.flow-mark {
    display: inline-flex;
    align-items: baseline;
    text-transform: none;
}

.flow-serif {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.14em;
    font-style: italic;
    font-weight: 700;
    text-transform: none;
}

.line-sans {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.92em;
    font-style: normal;
    font-weight: 200;
    letter-spacing: 0;
}

.toronto-page .line-sans {
    font-style: italic;
}

.nav-detail {
    margin-left: 0.18em;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.36em;
    font-weight: 200;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.section-detail {
    margin-left: 0.28em;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.7em;
    font-weight: 200;
    letter-spacing: 0.08em;
}

.toronto-nav a::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 1px;
    background: var(--black);
    content: "";
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.5s var(--transition);
}

.toronto-nav a:hover::after,
.toronto-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.toronto-section {
    min-height: 100vh;
    padding: clamp(86px, 11vw, 154px) clamp(22px, 8vw, 140px);
    border-top: 1px solid rgba(0, 0, 0, 0.16);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    scroll-margin-top: 0;
}

.about-page .toronto-section {
    min-height: auto;
    padding: clamp(48px, 7vw, 72px) clamp(1.5rem, 4vw, 3rem);
}

.about-page .toronto-section + .toronto-section {
    padding-top: clamp(18px, 3vw, 28px);
}

.section-label {
    margin-bottom: clamp(26px, 4vw, 52px);
    color: var(--black);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 0.16em;
}

.section-label .flow-mark {
    font-size: 1.35em;
    display: inline-flex;
    align-items: center;
    border-bottom: none;
    padding-bottom: 0;
}

.section-label .section-detail {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    border-bottom: none;
    padding-bottom: 0;
}

.section-title {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: clamp(28px, 5vw, 82px);
    align-items: end;
    margin-bottom: clamp(42px, 6vw, 74px);
}

.toronto-page .section-title {
    max-width: 820px;
}

.toronto-page .section-title h1 {
    max-width: 800px;
}

.section-title.single-column {
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 28px);
    align-items: stretch;
}

.services-section .section-title {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto clamp(5.8rem, 9vw, 7rem);
    gap: clamp(28px, 4vw, 38px);
}

.services-section .section-title h1 {
    max-width: none;
    white-space: nowrap;
    overflow-wrap: normal;
    line-height: 1.05;
}

.services-section .section-copy,
.services-section .package-grid {
    max-width: 920px;
    margin: 0 auto;
}

.services-section .section-copy {
    margin-top: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.services-section .section-copy h2 {
    margin: 0 0 2.2rem;
}

.services-section .section-copy p {
    margin: 0;
}

.intro-section .section-title {
    grid-template-columns: 1fr;
    gap: clamp(12px, 3vw, 28px);
}

.about-page main {
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(8.5rem, 12vw, 12rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
}

.about-page .section-title {
    margin-bottom: clamp(42px, 6vw, 74px);
}

.about-page .section-title h1 {
    max-width: 770px;
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2.4rem, 3.6vw, 4rem);
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.05;
}

.about-page .section-title p {
    max-width: 640px;
    font-size: clamp(0.98rem, 1.1vw, 1.12rem);
}

.about-page .intro-section {
    padding-top: clamp(3rem, 6vw, 5.5rem);
    border-top: none;
}

.about-page .principle-grid {
    margin-top: clamp(3rem, 5vw, 4.5rem);
    gap: clamp(1.25rem, 3vw, 2.5rem);
}

.about-page .principle-grid article {
    min-width: 0;
    padding: clamp(1.2rem, 2.4vw, 1.7rem) 0;
}

.section-title h1 {
    max-width: 860px;
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2rem, 4.2vw, 5rem);
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.02;
}

.section-title h1 .soft-highlight {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
}

.flowline-subtitle {
    display: block;
    margin-top: 0.25em;
    font-weight: 200;
}

.section-title p .soft-highlight {
    font-weight: 700;
    margin-left: 0.16em;
}

.section-title p,
.principle-grid p,
.package-grid p,
.package-grid li {
    color: rgba(0, 0, 0, 0.64);
    line-height: 1.62;
}

.section-title p {
    max-width: 570px;
    margin: 0;
    font-size: clamp(0.98rem, 1.25vw, 1.16rem);
    font-weight: 400;
    line-height: 1.7;
}

.soft-highlight {
    /* remove highlight box and use Montserrat for emphasis */
    background: none;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 500;
    color: var(--black);
}

.principle-grid,
.package-grid {
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
}

.principle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(5rem, 8vw, 9rem);
}

.principle-grid article,
.package-grid article {
    background: transparent;
    padding: 0;
    min-height: auto;
}

.principle-grid article {
    padding-top: clamp(12px, 2.2vw, 20px);
    padding-bottom: clamp(12px, 2.2vw, 20px);
}

.principle-grid article + article,
.package-grid article + article {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: clamp(18px, 2.4vw, 30px);
}

.principle-grid p,
.package-grid p {
    margin: 0;
    font-weight: 400;
}

.principle-grid h2,
.package-grid h2 {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 1.8vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 0;
    position: relative;
    padding-bottom: 18px;
}

/* horizontal line under the h2 (no arrow) */
.principle-grid h2::after,
.package-grid h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(0,0,0,0.45);
}

.package-grid h2 {
    font-style: italic;
}

.services-section {
    background: #f8f8f6;
    padding: clamp(28px, 4vw, 48px) clamp(22px, 8vw, 140px);
}

.package-grid {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: clamp(24px, 3vw, 36px);
    max-width: min(1320px, 100%);
    margin: 0 auto;
}

.services-section .section-title,
.services-section .section-copy,
.services-section .package-grid {
    max-width: min(1320px, 100%);
    margin: 0 auto;
}

.services-section .section-title {
    margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.services-section .section-copy {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-section .section-copy h2 {
    margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

.package-grid article {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: clamp(26px, 3vw, 40px);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.08);
}

.package-type {
    margin: 0 0 28px;
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.package-grid h2 {
    margin: 0 0 1rem;
}

.package-grid p {
    margin: 0 0 1rem;
}

.package-grid ul {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.13);
    list-style: none;
}

.package-grid li {
    margin: 0;
    font-size: 0.95rem;
}

.package-grid li::before {
    margin-right: 10px;
    content: "+";
}

.contact-link {
    display: block;
    width: fit-content;
    margin: clamp(3.4rem, 5.8vw, 4.8rem) auto 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--black);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.agency-kicker {
    margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
    color: rgba(0, 0, 0, 0.58);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.agency-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(520px, 0.95fr) minmax(620px, 0.85fr);
    align-items: end;
    gap: clamp(24px, 4vw, 70px);
    min-height: 100svh;
    padding-top: clamp(150px, 18vw, 220px);
    padding-bottom: clamp(78px, 9vw, 118px);
    overflow: hidden;
}

.hero-copy,
.hero-side,
.hero-proof {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 760px;
    padding-left: clamp(28px, 4vw, 58px);
}

.agency-hero::before {
    position: absolute;
    inset: clamp(110px, 13vw, 168px) auto clamp(46px, 6vw, 78px) clamp(22px, 8vw, 140px);
    width: min(780px, calc(100% - clamp(44px, 16vw, 280px)));
    border: 1px solid rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 248, 245, 0.42));
    backdrop-filter: blur(28px) saturate(1.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 34px 92px rgba(20, 32, 30, 0.12),
        0 8px 24px rgba(20, 32, 30, 0.06);
    content: "";
}

.agency-hero .section-title {
    margin-bottom: 0;
}

.agency-hero .section-title p {
    max-width: 630px;
}

.agency-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: clamp(2.4rem, 5vw, 4rem);
}

.agency-actions a,
.feature-card-grid a,
.calendar-panel a {
    position: relative;
    width: fit-content;
    padding-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-side {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(190px, 260px);
    align-items: center;
    gap: clamp(14px, 1.8vw, 24px);
    width: min(690px, 100%);
    justify-self: start;
    transform: translateX(clamp(-62px, -2.8vw, -22px));
}

.hero-proof {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(245, 247, 243, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 58px rgba(20, 32, 30, 0.1);
}

.hero-proof > span,
.hero-proof div span {
    color: rgba(0, 0, 0, 0.58);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero-proof h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.1vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.12;
}

.hero-proof p {
    margin: 0;
    color: rgba(0, 0, 0, 0.64);
    line-height: 1.68;
}

.hero-proof div {
    display: grid;
    gap: 8px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.hero-proof strong {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 300;
    letter-spacing: 0;
}

.agency-actions a::after,
.feature-card-grid a::after,
.calendar-panel a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0.34);
    transform-origin: center;
    transition: transform 0.45s var(--transition);
}

.agency-actions a:hover::after,
.agency-actions a:focus-visible::after,
.feature-card-grid a:hover::after,
.feature-card-grid a:focus-visible::after,
.calendar-panel a:hover::after,
.calendar-panel a:focus-visible::after {
    transform: scaleX(1);
}

.trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    background: transparent;
}

.trust-strip div {
    display: grid;
    align-content: center;
    gap: 10px;
    min-height: 132px;
    padding: clamp(18px, 2vw, 24px);
    border: 1px solid rgba(0, 0, 0, 0.22);
    background: rgba(250, 250, 247, 0.84);
    backdrop-filter: blur(14px);
}

.trust-strip strong {
    font-size: clamp(1.45rem, 2.2vw, 2.45rem);
    font-weight: 300;
    letter-spacing: 0;
}

.trust-strip span,
.browse-grid span,
.process-grid span,
.calendar-panel span {
    color: rgba(0, 0, 0, 0.58);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-transform: uppercase;
}

.agency-hero,
.editorial-section,
.process-section,
.contact-booking-section {
    background: transparent;
    backdrop-filter: none;
}

.toronto-page .agency-hero {
    background: transparent;
}

.toronto-page .editorial-section {
    background: transparent;
}

.toronto-page .process-section {
    background: transparent;
}

.toronto-page .contact-booking-section {
    background: transparent;
}

.toronto-page .scroll-reveal-section {
    opacity: 0;
    filter: blur(18px);
    transform: translateY(56px) scale(0.985);
    transition:
        opacity 1.15s var(--transition),
        filter 1.15s var(--transition),
        transform 1.15s var(--transition);
    will-change: opacity, filter, transform;
}

.toronto-page .scroll-reveal-section.is-section-revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.editorial-section,
.process-section,
.contact-booking-section {
    border-top-color: rgba(0, 0, 0, 0.22);
}

.toronto-page .reveal-item {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(42px);
    transition:
        opacity 1.05s var(--transition) var(--reveal-delay, 0ms),
        filter 1.05s var(--transition) var(--reveal-delay, 0ms),
        transform 1.05s var(--transition) var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

.toronto-page .hero-proof.reveal-item,
.toronto-page .trust-strip > div.reveal-item,
.toronto-page .feature-card-grid article.reveal-item,
.toronto-page .browse-grid article.reveal-item,
.toronto-page .process-grid article.reveal-item,
.toronto-page .calendar-panel.reveal-item {
    transform: none;
}

.toronto-page .is-revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) translateX(0);
}

.feature-card-grid,
.browse-grid,
.process-grid,
.contact-booking-section {
    display: grid;
    gap: clamp(20px, 3vw, 34px);
    max-width: min(1320px, 100%);
    margin: clamp(3rem, 6vw, 5rem) auto 0;
}

.feature-card-grid,
.browse-grid,
.contact-booking-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.toronto-page .process-section {
    min-height: auto;
    padding-top: clamp(68px, 7vw, 104px);
    padding-bottom: clamp(76px, 8vw, 118px);
    color: rgba(255, 255, 255, 0.88);
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.96), rgba(14, 14, 13, 0.94));
    border-top-color: rgba(255, 255, 255, 0.12);
}

.toronto-page .process-section .section-title {
    margin-bottom: clamp(34px, 4vw, 52px);
}

.toronto-page .process-section .agency-kicker,
.toronto-page .process-section .section-title p,
.toronto-page .process-grid span,
.toronto-page .process-grid p {
    color: rgba(255, 255, 255, 0.58);
}

.toronto-page .process-section .section-title h1,
.toronto-page .process-grid h2 {
    color: rgba(255, 255, 255, 0.94);
}

.toronto-page .process-grid {
    margin-top: clamp(2rem, 4vw, 3.6rem);
}

.toronto-page .process-grid article {
    min-height: 0;
    padding: clamp(22px, 2.5vw, 34px);
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.feature-card-grid article,
.browse-grid article,
.process-grid article,
.calendar-panel {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid rgba(0, 0, 0, 0.24);
    background: rgba(255, 255, 252, 0.7);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 44px rgba(20, 32, 30, 0.055);
}

.feature-card-grid article + article,
.browse-grid article + article,
.process-grid article + article,
.trust-strip div + div {
    border-left-color: rgba(0, 0, 0, 0.26);
}

.contact-booking-section > div + div,
.chat-demo-section > div + div {
    border-left: 1px solid rgba(0, 0, 0, 0.22);
    padding-left: clamp(20px, 3vw, 44px);
}

.chat-demo-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.62fr) minmax(320px, 1fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: start;
    max-width: min(1180px, 100%);
    margin: clamp(3.2rem, 7vw, 6rem) auto 0;
    scroll-margin-top: 120px;
}

.chat-demo-copy {
    display: grid;
    gap: 18px;
    padding-top: 10px;
}

.chat-demo-copy .agency-kicker {
    margin-bottom: 0;
}

.chat-demo-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4.6rem);
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.02;
}

.chat-demo-copy p {
    max-width: 420px;
    margin: 0;
    color: rgba(0, 0, 0, 0.64);
    line-height: 1.7;
}

.chat-window {
    display: flex;
    flex-direction: column;
    height: clamp(520px, 72svh, 650px);
    min-height: clamp(520px, 58vw, 650px);
    overflow: hidden;
    border: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(247, 248, 245, 0.48));
    backdrop-filter: blur(24px) saturate(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 34px 92px rgba(20, 32, 30, 0.12),
        0 8px 24px rgba(20, 32, 30, 0.06);
}

.chat-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px clamp(20px, 3vw, 30px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.chat-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.78);
    background: rgba(255, 255, 255, 0.48);
}

.chat-avatar .flow-mark {
    font-size: 0.9rem;
}

.chat-head-info {
    min-width: 0;
}

.chat-head-name {
    color: rgba(0, 0, 0, 0.84);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.chat-head-name span {
    margin-left: 8px;
    color: rgba(0, 0, 0, 0.48);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.chat-head-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    color: rgba(0, 0, 0, 0.52);
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.chat-head-status::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.64);
    content: "";
}

.chat-log {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: clamp(20px, 3vw, 30px);
    scroll-behavior: smooth;
}

.chat-log::-webkit-scrollbar {
    width: 6px;
}

.chat-log::-webkit-scrollbar-track {
    background: transparent;
}

.chat-log::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
}

.msg {
    display: flex;
    max-width: min(78%, 520px);
    opacity: 0;
    transform: translateY(8px);
    animation: msg-in 0.42s var(--transition) forwards;
}

@keyframes msg-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg-user {
    align-self: flex-end;
}

.msg-bot {
    align-self: flex-start;
}

.msg-bubble {
    padding: 14px 17px;
    color: rgba(0, 0, 0, 0.72);
    background: rgba(255, 255, 255, 0.58);
    line-height: 1.58;
    white-space: pre-wrap;
}

.msg-bubble p {
    margin: 0;
}

.msg-bubble p + p {
    margin-top: 0.9em;
}

.msg-user .msg-bubble {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.82);
}

.typing-bubble {
    display: inline-flex;
    gap: 5px;
    padding: 15px 17px;
    background: rgba(255, 255, 255, 0.58);
}

.typing-bubble span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.42);
    animation: typing-dot 1.15s infinite ease-in-out;
}

.typing-bubble span:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-bubble span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes typing-dot {
    0%,
    60%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px clamp(20px, 3vw, 30px) 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.chip {
    padding: 8px 13px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.68);
    background: rgba(255, 255, 255, 0.34);
    font: inherit;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.chip:hover,
.chip:focus-visible {
    border-color: rgba(0, 0, 0, 0.32);
    color: rgba(0, 0, 0, 0.9);
    background: rgba(255, 255, 255, 0.62);
}

.chip:disabled {
    cursor: default;
    opacity: 0.42;
}

.chat-input {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 16px clamp(20px, 3vw, 30px) 24px;
}

.chat-input textarea {
    flex: 1;
    max-height: 120px;
    min-height: 48px;
    resize: none;
    border: 1px solid rgba(0, 0, 0, 0.11);
    color: rgba(0, 0, 0, 0.78);
    background: rgba(255, 255, 255, 0.54);
    font: inherit;
    font-size: 0.92rem;
    line-height: 1.45;
    outline: none;
    padding: 13px 15px;
}

.chat-input textarea:focus {
    border-color: rgba(0, 0, 0, 0.34);
}

.chat-input textarea::placeholder {
    color: rgba(0, 0, 0, 0.42);
}

.send-btn {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.82);
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s var(--transition);
}

.send-btn:hover,
.send-btn:focus-visible {
    background: rgba(0, 0, 0, 0.96);
    transform: translateY(-2px);
}

.send-btn:disabled {
    cursor: default;
    opacity: 0.42;
    transform: none;
}

.send-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.feature-card-grid h2,
.browse-grid h2,
.process-grid h2,
.contact-booking-section h1,
.calendar-panel h2 {
    margin: 0;
    font-weight: 400;
    letter-spacing: 0;
}

.feature-card-grid p,
.browse-grid p,
.process-grid p,
.contact-booking-section p,
.contact-booking-section li,
.calendar-panel li {
    margin: 0;
    color: rgba(0, 0, 0, 0.64);
    line-height: 1.65;
}

.contact-booking-section {
    align-items: center;
    max-width: min(1180px, 100%);
    gap: clamp(28px, 5vw, 76px);
    min-height: auto;
    padding-top: clamp(86px, 8vw, 118px);
    padding-bottom: clamp(86px, 8vw, 118px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.toronto-page .contact-booking-section {
    max-width: none;
    padding-right: clamp(22px, 8vw, 140px);
    padding-left: clamp(22px, 8vw, 140px);
    background:
        linear-gradient(180deg, rgba(244, 242, 237, 0.94), rgba(248, 247, 244, 0.96));
}

.toronto-page .contact-copy-panel,
.toronto-page .calendar-panel {
    max-width: none;
}

.toronto-page .contact-copy-panel {
    padding: clamp(34px, 4vw, 56px);
    background: rgba(255, 255, 252, 0.42);
    backdrop-filter: blur(16px);
}

.toronto-page .calendar-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 252, 0.86), rgba(245, 244, 240, 0.58));
    box-shadow: 0 26px 72px rgba(20, 32, 30, 0.08);
}

.contact-copy-panel {
    display: grid;
    align-content: center;
    max-width: 520px;
    padding: clamp(12px, 2vw, 22px) 0;
}

.contact-copy-panel .agency-kicker {
    margin-bottom: 0.95rem;
}

.contact-copy-panel h1 {
    font-size: clamp(2.2rem, 4vw, 4.6rem);
    line-height: 0.98;
}

.contact-copy-panel > p {
    max-width: 460px;
    margin-top: 1rem;
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.contact-meta-grid,
.booking-detail-grid {
    display: grid;
    gap: 1px;
    margin: clamp(26px, 3vw, 34px) 0;
    border: 1px solid rgba(0, 0, 0, 0.24);
    background: rgba(0, 0, 0, 0.2);
}

.contact-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-meta-grid span,
.booking-detail-grid span {
    min-height: 54px;
    padding: 15px 16px;
    color: rgba(0, 0, 0, 0.62);
    background: rgba(255, 255, 252, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.contact-email-link {
    width: fit-content;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.68);
    color: rgba(0, 0, 0, 0.72);
}

.calendar-panel {
    position: relative;
    max-width: 430px;
    justify-self: end;
    gap: 16px;
    padding: clamp(28px, 3.3vw, 44px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 245, 0.6));
}

.calendar-panel::before {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-top: 1px solid rgba(0, 0, 0, 0.24);
    border-right: 1px solid rgba(0, 0, 0, 0.24);
    content: "";
    opacity: 0.62;
}

.calendar-panel h2 {
    max-width: 330px;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    line-height: 1.12;
}

.calendar-panel p {
    max-width: 360px;
}

.booking-detail-grid {
    margin-top: 20px;
    margin-bottom: 18px;
}

.booking-detail-grid span {
    min-height: 46px;
    background: rgba(255, 255, 252, 0.72);
}

.toronto-page .editorial-section {
    padding-top: clamp(166px, 14vw, 238px);
    padding-bottom: clamp(150px, 13vw, 220px);
    background:
        linear-gradient(180deg, rgba(247, 247, 245, 0.72), rgba(246, 245, 242, 0.58));
}

.toronto-page .editorial-section > .section-title {
    max-width: 900px;
    margin-bottom: clamp(4.6rem, 7vw, 6.8rem);
}

.toronto-page .editorial-section > .section-title h1,
.toronto-page .chat-demo-copy h2 {
    font-size: clamp(2.6rem, 5vw, 5.6rem);
    line-height: 1.02;
}

.toronto-page .editorial-section > .section-title p,
.toronto-page .chat-demo-copy p {
    color: rgba(0, 0, 0, 0.52);
    line-height: 1.74;
}

.toronto-page .feature-card-grid {
    gap: clamp(26px, 4vw, 56px);
    max-width: min(1180px, 100%);
    margin-top: 0;
}

.toronto-page .feature-card-grid article {
    min-height: clamp(330px, 28vw, 430px);
    gap: clamp(22px, 2.8vw, 34px);
    padding: clamp(34px, 4vw, 56px);
    border-color: rgba(0, 0, 0, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 255, 252, 0.72), rgba(247, 247, 245, 0.48));
    box-shadow: 0 18px 52px rgba(20, 32, 30, 0.042);
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s var(--transition),
        transform 0.35s var(--transition);
}

.toronto-page .feature-card-grid article:hover,
.toronto-page .feature-card-grid article:focus-within {
    border-color: rgba(0, 0, 0, 0.16);
    box-shadow: 0 24px 64px rgba(20, 32, 30, 0.06);
    transform: translateY(-2px);
}

.toronto-page .feature-card-grid h2 {
    font-size: clamp(1.65rem, 2.5vw, 2.45rem);
    line-height: 1.08;
}

.toronto-page .feature-card-grid p {
    max-width: 340px;
    color: rgba(0, 0, 0, 0.58);
}

.toronto-page .feature-card-grid article p + p {
    margin-top: auto;
    padding-top: clamp(22px, 3vw, 36px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.46);
    font-size: 0.9rem;
}

.toronto-page .feature-card-grid a {
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.68rem;
}

.toronto-page .feature-card-grid a::after {
    opacity: 0.56;
    transform: scaleX(0.26);
}

.toronto-page .chat-demo-section {
    grid-template-columns: minmax(300px, 0.42fr) minmax(560px, 1fr);
    gap: clamp(72px, 9vw, 142px);
    max-width: min(1380px, 100%);
    margin-top: clamp(7rem, 12vw, 11rem);
    padding: clamp(52px, 6vw, 86px);
    background: rgba(18, 18, 17, 0.42);
    backdrop-filter: blur(12px);
}

.toronto-page .chat-demo-copy {
    gap: clamp(20px, 3vw, 30px);
    align-self: stretch;
    align-content: center;
    justify-self: start;
    padding: clamp(34px, 4vw, 58px) 0 clamp(34px, 4vw, 58px) clamp(18px, 2vw, 30px);
    border: 0;
    background: transparent;
    box-shadow: none;
}

.toronto-page .chat-window {
    height: clamp(620px, 78svh, 760px);
    min-height: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background:
        linear-gradient(135deg, rgba(255, 255, 252, 0.82), rgba(247, 247, 245, 0.54));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 36px 100px rgba(20, 32, 30, 0.09),
        0 10px 26px rgba(20, 32, 30, 0.04);
    transition:
        box-shadow 0.35s var(--transition),
        transform 0.35s var(--transition);
}

.toronto-page .chat-window:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 42px 112px rgba(20, 32, 30, 0.105),
        0 12px 30px rgba(20, 32, 30, 0.045);
    transform: translateY(-2px);
}

.toronto-page .chat-head {
    padding: clamp(28px, 3.5vw, 44px);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.toronto-page .chat-head-status::before {
    background: rgba(0, 0, 0, 0.78);
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.055);
}

.toronto-page .chat-log {
    gap: 24px;
    padding: clamp(32px, 4.2vw, 54px);
}

.toronto-page .msg-bubble,
.toronto-page .typing-bubble {
    padding: 17px 20px;
    background: rgba(255, 255, 255, 0.62);
    line-height: 1.66;
}

.toronto-page .suggestions {
    gap: 10px;
    padding: 18px clamp(28px, 3.5vw, 44px) 8px;
    border-top-color: rgba(0, 0, 0, 0.06);
}

.toronto-page .chip {
    border-color: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.52);
    background: rgba(255, 255, 255, 0.22);
}

.toronto-page .chip:hover,
.toronto-page .chip:focus-visible {
    border-color: rgba(0, 0, 0, 0.16);
    color: rgba(0, 0, 0, 0.78);
    background: rgba(255, 255, 255, 0.52);
}

.toronto-page .chat-input {
    padding: 18px clamp(28px, 3.5vw, 44px) clamp(28px, 3.5vw, 44px);
}

.toronto-page .chat-input textarea {
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.56);
}

.toronto-page .agency-hero,
.toronto-page .editorial-section,
.toronto-page .process-section,
.toronto-page .contact-booking-section {
    color: rgba(255, 255, 255, 0.9);
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(13, 13, 12, 0.96));
    border-top-color: rgba(255, 255, 255, 0.1);
}

.toronto-page .agency-hero .section-title h1,
.toronto-page .hero-proof h2,
.toronto-page .trust-strip strong,
.toronto-page .editorial-section > .section-title h1,
.toronto-page .chat-demo-copy h2,
.toronto-page .process-section .section-title h1,
.toronto-page .process-grid h2,
.toronto-page .contact-booking-section h1,
.toronto-page .calendar-panel h2,
.toronto-page .feature-card-grid h2 {
    color: rgba(255, 255, 255, 0.96);
}

.toronto-page .agency-hero .agency-kicker,
.toronto-page .agency-hero .section-title p,
.toronto-page .hero-proof .agency-kicker,
.toronto-page .hero-proof p,
.toronto-page .hero-proof span,
.toronto-page .trust-strip span,
.toronto-page .editorial-section .agency-kicker,
.toronto-page .chat-demo-copy .agency-kicker,
.toronto-page .process-section .agency-kicker,
.toronto-page .contact-booking-section .agency-kicker,
.toronto-page .editorial-section > .section-title p,
.toronto-page .chat-demo-copy p,
.toronto-page .process-section .section-title p,
.toronto-page .process-grid span,
.toronto-page .process-grid p,
.toronto-page .contact-booking-section p,
.toronto-page .contact-booking-section li,
.toronto-page .calendar-panel span,
.toronto-page .calendar-panel p,
.toronto-page .feature-card-grid p {
    color: rgba(255, 255, 255, 0.58);
}

.toronto-page .hero-proof,
.toronto-page .trust-strip div,
.toronto-page .feature-card-grid article,
.toronto-page .process-grid article,
.toronto-page .calendar-panel,
.toronto-page .contact-copy-panel {
    border-color: rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: 0 26px 76px rgba(0, 0, 0, 0.26);
}

.toronto-page .hero-proof hr {
    border-color: rgba(255, 255, 255, 0.12);
}

.toronto-page .agency-actions a {
    color: rgba(255, 255, 255, 0.76);
}

.toronto-page .agency-actions a::after {
    background: rgba(255, 255, 255, 0.7);
}

.toronto-page .feature-card-grid article:hover,
.toronto-page .feature-card-grid article:focus-within {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 32px 88px rgba(0, 0, 0, 0.32);
}

.toronto-page .feature-card-grid article p + p {
    border-top-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.46);
}

.toronto-page .feature-card-grid a,
.toronto-page .contact-email-link {
    border-bottom-color: rgba(255, 255, 255, 0.58);
    color: rgba(255, 255, 255, 0.72);
}

.toronto-page .contact-meta-grid,
.toronto-page .booking-detail-grid {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.11);
}

.toronto-page .contact-meta-grid span,
.toronto-page .booking-detail-grid span {
    color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.045);
}

.toronto-page .calendar-panel::before {
    border-top-color: rgba(255, 255, 255, 0.2);
    border-right-color: rgba(255, 255, 255, 0.2);
}

.toronto-page .chat-demo-section {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.toronto-page .chat-window {
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 38px 104px rgba(0, 0, 0, 0.34);
}

.toronto-page .chat-window:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 44px 118px rgba(0, 0, 0, 0.4);
}

.toronto-page .chat-head {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.toronto-page .chat-avatar {
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.toronto-page .chat-head-name {
    color: rgba(255, 255, 255, 0.9);
}

.toronto-page .chat-head-name span,
.toronto-page .chat-head-status {
    color: rgba(255, 255, 255, 0.5);
}

.toronto-page .chat-head-status::before {
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.toronto-page .msg-bubble,
.toronto-page .typing-bubble {
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.07);
}

.toronto-page .msg-user .msg-bubble {
    color: rgba(0, 0, 0, 0.88);
    background: rgba(255, 255, 255, 0.9);
}

.toronto-page .typing-bubble span {
    background: rgba(255, 255, 255, 0.58);
}

.toronto-page .suggestions {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.toronto-page .chip {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.035);
}

.toronto-page .chip:hover,
.toronto-page .chip:focus-visible {
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
}

.toronto-page .chat-input textarea {
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.055);
}

.toronto-page .chat-input textarea:focus {
    border-color: rgba(255, 255, 255, 0.34);
}

.toronto-page .chat-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.toronto-page .send-btn {
    color: rgba(0, 0, 0, 0.9);
    background: rgba(255, 255, 255, 0.9);
}

.toronto-page .send-btn:hover,
.toronto-page .send-btn:focus-visible {
    background: rgba(255, 255, 255, 1);
}

.toronto-page .agency-hero {
    --hero-panel-width: min(1180px, calc(100vw - 370px));
    --hero-panel-left: calc((100vw - var(--hero-panel-width)) / 2);
    --hero-panel-top: clamp(250px, 21vw, 300px);
    --hero-panel-height: clamp(430px, 33vw, 530px);
    --hero-stat-width: clamp(230px, 18vw, 285px);
    --hero-stat-gap: clamp(12px, 1vw, 16px);
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(22px, 2.4vw, 34px);
    min-height: 88svh;
    color: rgba(0, 0, 0, 0.86);
    background: transparent;
}

.toronto-page .agency-hero::before {
    top: var(--hero-panel-top);
    right: auto;
    bottom: auto;
    left: var(--hero-panel-left);
    width: var(--hero-panel-width);
    height: var(--hero-panel-height);
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(
            90deg,
            rgba(26, 26, 25, 0.62) 0%,
            rgba(22, 22, 21, 0.64) 58%,
            rgba(17, 17, 16, 0.72) 73%,
            rgba(10, 10, 10, 0.84) 100%
        ),
        radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.1), transparent 38%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        0 34px 92px rgba(0, 0, 0, 0.24),
        0 8px 24px rgba(0, 0, 0, 0.12);
}

.toronto-page .hero-copy {
    position: absolute;
    top: calc(var(--hero-panel-top) + clamp(82px, 6.8vw, 104px));
    left: calc(var(--hero-panel-left) + clamp(48px, 4.2vw, 64px));
    z-index: 2;
    display: grid;
    gap: clamp(14px, 1.6vw, 22px);
    width: calc(var(--hero-panel-width) - var(--hero-stat-width) - clamp(148px, 13vw, 210px));
    max-width: 760px;
    align-self: auto;
    margin: 0;
    padding: 0;
    transform: none;
}

.toronto-page .typed-headline::after {
    display: inline-block;
    width: 0.035em;
    height: 0.82em;
    margin-left: 0.08em;
    background: currentColor;
    content: "";
    vertical-align: -0.04em;
    animation: cursor-blink 0.85s steps(1) infinite;
}

.toronto-page .typed-headline.is-typed::after {
    opacity: 0;
    animation: none;
}

@keyframes cursor-blink {
    50% {
        opacity: 0;
    }
}

.toronto-page .agency-hero .section-title {
    display: grid;
    gap: clamp(12px, 1.4vw, 18px);
    max-width: 100%;
}

.toronto-page .agency-hero .section-title h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 2.72vw, 3.12rem);
    line-height: 1.03;
    letter-spacing: 0.004em;
    text-wrap: balance;
}

.toronto-page .headline-serif {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: normal;
}

.toronto-page .agency-hero .section-title p {
    max-width: 100%;
    font-size: clamp(0.77rem, 0.82vw, 0.85rem);
    line-height: 1.64;
    letter-spacing: 0.01em;
}

.toronto-page .agency-hero .agency-kicker,
.toronto-page .agency-actions a {
    font-size: 0.61rem;
    letter-spacing: 0.19em;
}

.toronto-page .agency-hero .agency-kicker {
    width: fit-content;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.toronto-page .agency-actions {
    gap: clamp(20px, 2.2vw, 30px);
    margin-top: clamp(18px, 2.2vw, 28px);
    opacity: 0;
    filter: blur(8px);
    transform: translateY(10px);
    transition:
        opacity 0.75s var(--transition),
        filter 0.75s var(--transition),
        transform 0.75s var(--transition);
}

.toronto-page .agency-hero.hero-ctas-visible .agency-actions {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.toronto-page .editorial-section,
.toronto-page .process-section,
.toronto-page .contact-booking-section {
    color: rgba(0, 0, 0, 0.86);
    background:
        linear-gradient(180deg, rgba(247, 247, 245, 0.72), rgba(246, 245, 242, 0.5));
    border-top-color: rgba(0, 0, 0, 0.14);
}

.toronto-page .process-section {
    background:
        linear-gradient(180deg, rgba(246, 245, 242, 0.7), rgba(248, 247, 244, 0.58));
}

.toronto-page .contact-booking-section {
    background:
        linear-gradient(180deg, rgba(244, 242, 237, 0.82), rgba(248, 247, 244, 0.9));
}

.toronto-page .editorial-section > .section-title h1,
.toronto-page .chat-demo-copy h2,
.toronto-page .process-section .section-title h1,
.toronto-page .contact-booking-section h1 {
    color: rgba(0, 0, 0, 0.92);
}

.toronto-page .editorial-section .agency-kicker,
.toronto-page .chat-demo-copy .agency-kicker,
.toronto-page .process-section .agency-kicker,
.toronto-page .contact-booking-section .agency-kicker,
.toronto-page .editorial-section > .section-title p,
.toronto-page .chat-demo-copy p,
.toronto-page .process-section .section-title p,
.toronto-page .contact-booking-section p {
    color: rgba(0, 0, 0, 0.58);
}

.toronto-page .chat-demo-copy h2 {
    color: rgba(255, 255, 255, 0.96);
}

.toronto-page .chat-demo-copy .agency-kicker,
.toronto-page .chat-demo-copy p {
    color: rgba(255, 255, 255, 0.62);
}

.toronto-page .agency-hero .section-title h1 {
    color: rgba(255, 255, 255, 0.96);
}

.toronto-page .agency-hero .agency-kicker,
.toronto-page .agency-hero .section-title p {
    color: rgba(255, 255, 255, 0.6);
}

.toronto-page .agency-actions a {
    color: rgba(255, 255, 255, 0.76);
}

.toronto-page .agency-actions a::after {
    background: rgba(255, 255, 255, 0.72);
}

.toronto-page .hero-side {
    position: absolute;
    top: calc(var(--hero-panel-top) + clamp(42px, 4vw, 56px));
    right: calc(var(--hero-panel-left) + clamp(28px, 3vw, 44px));
    z-index: 2;
    display: grid;
    width: var(--hero-stat-width);
    pointer-events: none;
}

.toronto-page .trust-strip {
    display: grid;
    gap: var(--hero-stat-gap);
}

.toronto-page .trust-strip div {
    min-height: clamp(98px, 7vw, 122px);
    padding: clamp(18px, 1.65vw, 24px);
    opacity: 0;
    filter: blur(14px);
    transform: translateY(12px);
    transition:
        opacity 0.85s var(--transition),
        filter 0.85s var(--transition),
        transform 0.85s var(--transition);
}

.toronto-page .trust-strip strong {
    font-size: clamp(1.65rem, 2.3vw, 2.65rem);
}

.toronto-page .trust-strip span {
    font-size: 0.64rem;
}

.toronto-page .trust-strip span {
    letter-spacing: 0.18em;
}

.toronto-page .hero-stats-visible .trust-strip div {
    opacity: 0.78;
    filter: blur(0);
    transform: translateY(0);
}

.toronto-page .hero-stats-visible .trust-strip div:nth-child(2) {
    transition-delay: 120ms;
}

.toronto-page .hero-stats-visible .trust-strip div:nth-child(3) {
    transition-delay: 240ms;
}

.toronto-page .hero-proof,
.toronto-page .trust-strip div,
.toronto-page .feature-card-grid article,
.toronto-page .process-grid article,
.toronto-page .calendar-panel,
.toronto-page .chat-window {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.12), transparent 36%),
        linear-gradient(135deg, rgba(12, 12, 12, 0.88), rgba(25, 25, 23, 0.84));
    box-shadow: 0 30px 82px rgba(0, 0, 0, 0.24);
}

.toronto-page .contact-copy-panel {
    color: rgba(0, 0, 0, 0.86);
    border-color: rgba(0, 0, 0, 0.11);
    background: rgba(255, 255, 252, 0.46);
    box-shadow: 0 24px 72px rgba(20, 32, 30, 0.06);
}

.toronto-page .hero-proof h2,
.toronto-page .trust-strip strong,
.toronto-page .feature-card-grid h2,
.toronto-page .process-grid h2,
.toronto-page .calendar-panel h2,
.toronto-page .chat-head-name {
    color: rgba(255, 255, 255, 0.96);
}

.toronto-page .hero-proof .agency-kicker,
.toronto-page .hero-proof p,
.toronto-page .hero-proof span,
.toronto-page .trust-strip span,
.toronto-page .feature-card-grid p,
.toronto-page .process-grid span,
.toronto-page .process-grid p,
.toronto-page .calendar-panel span,
.toronto-page .calendar-panel p,
.toronto-page .calendar-panel li,
.toronto-page .chat-head-name span,
.toronto-page .chat-head-status {
    color: rgba(255, 255, 255, 0.58);
}

.toronto-page .feature-card-grid article p + p {
    border-top-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.46);
}

.toronto-page .feature-card-grid a {
    color: rgba(255, 255, 255, 0.76);
}

.toronto-page .feature-card-grid a::after {
    background: rgba(255, 255, 255, 0.7);
}

.toronto-page .chat-demo-section {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(18, 18, 17, 0.42);
    border-color: rgba(255, 255, 255, 0.08);
}

.toronto-page .contact-booking-section {
    grid-template-columns: minmax(480px, 0.95fr) minmax(340px, 0.58fr);
    gap: clamp(26px, 3.2vw, 52px);
    max-width: min(1280px, calc(100% - 44px));
    padding-right: 0;
    padding-left: 0;
}

.toronto-page .calendar-panel {
    justify-self: start;
}

.site-footer {
    display: grid;
    gap: clamp(3rem, 6vw, 5rem);
    padding: clamp(56px, 9vw, 120px) clamp(22px, 8vw, 140px) clamp(28px, 5vw, 52px);
    color: rgba(255, 255, 255, 0.74);
    background: #090909;
}

.toronto-page .site-footer {
    min-height: 72vh;
    scroll-snap-align: start;
}

.footer-brand {
    display: grid;
    gap: 18px;
    max-width: 620px;
}

.footer-brand h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1;
}

.footer-brand .flow-mark {
    display: inline-flex;
    align-items: baseline;
}

.footer-brand .line-sans {
    font-style: italic;
}

.footer-brand p,
.footer-bottom p {
    margin: 0;
    line-height: 1.7;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 260px));
    gap: clamp(30px, 6vw, 90px);
    padding-top: clamp(2rem, 4vw, 3.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-columns div {
    display: grid;
    gap: 12px;
}

.footer-columns h3 {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-columns a {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.footer-bottom {
    display: block;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

.back-to-top {
    position: fixed;
    right: 50%;
    bottom: 24px;
    z-index: 5;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translate(50%, 8px);
    transition:
        color 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s var(--transition);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(50%, 0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    color: var(--black);
    transform: translate(50%, -4px);
}

@media (prefers-color-scheme: dark) {
    :root {
        --black: #f7f7f5;
        --white: #050505;
    }

    body:not(.toronto-page) {
        color: rgba(255, 255, 255, 0.88);
        background:
            radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 36%),
            linear-gradient(180deg, #050505, #0d0d0c);
    }

    .entry-page::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.56)),
            radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 38%);
    }

    .splash {
        background: #050505;
    }

    .splash img {
        filter: invert(1) brightness(1.08) contrast(1.04);
    }

    .entry-welcome,
    .home-logo,
    .entry-status,
    .top-links,
    .home-journey p,
    .location-nav a,
    .location-back,
    .home-contact,
    .sound-toggle,
    .skip-intro {
        color: rgba(255, 255, 255, 0.82);
        text-shadow: 0 1px 22px rgba(0, 0, 0, 0.42);
    }

    .home-logo-place,
    .contact-close,
    .contact-form span,
    .contact-thanks,
    .section-label,
    .agency-kicker,
    .package-type,
    .section-title p,
    .principle-grid p,
    .package-grid p,
    .package-grid li {
        color: rgba(255, 255, 255, 0.6);
    }

    .top-menu span {
        color: rgba(255, 255, 255, 0.78);
    }

    .top-menu-panel,
    .contact-panel,
    .location-nav a,
    .package-grid article,
    .principle-grid article,
    .hero-proof,
    .trust-strip div,
    .feature-card-grid article,
    .browse-grid article,
    .process-grid article,
    .calendar-panel {
        border-color: rgba(255, 255, 255, 0.16);
        background:
            linear-gradient(135deg, rgba(8, 8, 8, 0.76), rgba(22, 22, 20, 0.54));
        backdrop-filter: blur(18px) saturate(1.08);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 28px 78px rgba(0, 0, 0, 0.32);
    }

    .top-menu-panel a,
    .contact-form input,
    .contact-form textarea,
    .contact-form button,
    .section-title h1,
    .section-title h1 .soft-highlight,
    .soft-highlight,
    .principle-grid h2,
    .package-grid h2,
    .hero-proof h2,
    .trust-strip strong,
    .feature-card-grid h2,
    .browse-grid h2,
    .process-grid h2,
    .calendar-panel h2 {
        color: rgba(255, 255, 255, 0.94);
    }

    .top-menu-panel a:hover,
    .top-menu-panel a:focus-visible {
        color: rgba(255, 255, 255, 0.98);
        background: rgba(255, 255, 255, 0.08);
    }

    .location-nav a::after,
    .location-back::after,
    .principle-grid h2::after,
    .package-grid h2::after {
        background: rgba(255, 255, 255, 0.62);
    }

    .location-home::after {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.18) 28%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.54) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.38) 100%);
    }

    .city-video-panel {
        opacity: 0.72;
    }

    .city-video-panel::after {
        background: rgba(0, 0, 0, 0.18);
    }

    .city-video-panel video {
        filter: saturate(0.78) contrast(1.04) brightness(0.74);
    }

    .contact-form input,
    .contact-form textarea {
        border-bottom-color: rgba(255, 255, 255, 0.18);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-bottom-color: rgba(255, 255, 255, 0.72);
    }

    .weather-forecast {
        border-color: rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.8);
        background:
            linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(18, 18, 16, 0.78));
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            0 28px 78px rgba(0, 0, 0, 0.42);
    }

    .weather-forecast span {
        border-bottom-color: rgba(255, 255, 255, 0.16);
    }

    .weather-forecast strong,
    .weather-forecast b {
        color: rgba(255, 255, 255, 0.84);
    }

    .weather-forecast em {
        color: rgba(255, 255, 255, 0.58);
    }

    .about-page main {
        position: relative;
        z-index: 1;
    }

    .about-page .toronto-section {
        border-top-color: rgba(255, 255, 255, 0.12);
    }

    .about-page .toronto-section:first-child {
        border-top: 0;
    }

    .location-page {
        background:
            radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.1), transparent 34%),
            linear-gradient(180deg, #050505, #10100f);
    }

    .location-logo {
        filter: brightness(0.82) contrast(1.08);
        box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
    }

    .services-section {
        background: rgba(5, 5, 5, 0.96);
    }
}

.toronto-page {
    background: #050505;
}

.toronto-page main {
    position: relative;
    z-index: 1;
}

.toronto-page .site-topbar,
.toronto-page .home-logo,
.toronto-page .entry-status,
.toronto-page .top-menu,
.toronto-page .location-back {
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 22px rgba(0, 0, 0, 0.42);
}

.toronto-page .home-logo .flow-mark {
    color: rgba(255, 255, 255, 0.92);
}

.toronto-page .home-logo-place {
    color: rgba(255, 255, 255, 0.64);
}

.toronto-page .top-menu summary span {
    background: currentColor;
}

.toronto-page .weather-forecast {
    right: 0;
    left: auto;
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(18, 18, 16, 0.78));
    backdrop-filter: blur(18px) saturate(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 28px 78px rgba(0, 0, 0, 0.46);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.44);
    transform: translate(0, 8px);
}

.toronto-page .weather-status:hover .weather-forecast,
.toronto-page .weather-status:focus .weather-forecast,
.toronto-page .weather-status:focus-within .weather-forecast {
    transform: translate(0, 0);
}

.toronto-page .weather-forecast span {
    border-bottom-color: rgba(255, 255, 255, 0.16);
}

.toronto-page .weather-forecast strong,
.toronto-page .weather-forecast b {
    color: rgba(255, 255, 255, 0.84);
}

.toronto-page .weather-forecast em {
    color: rgba(255, 255, 255, 0.58);
}

.toronto-page .weather-forecast::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

.toronto-page .page-video-background::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.42)),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 34%);
}

.toronto-page .page-video-background .city-video-panel {
    opacity: 1;
}

.toronto-page .page-video-background .city-video-panel video {
    filter: saturate(0.85) contrast(1.04) brightness(0.82);
    transform: scale(1.018);
}

.toronto-page .page-video-background .city-video-panel::after {
    background: rgba(0, 0, 0, 0.08);
}

.toronto-page .agency-hero,
.toronto-page .editorial-section,
.toronto-page .process-section,
.toronto-page .contact-booking-section {
    border-top-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(4, 4, 4, 0.18), rgba(4, 4, 4, 0.44));
}

.toronto-page .agency-hero {
    min-height: 94svh;
}

.toronto-page .agency-hero::before {
    border-color: rgba(255, 255, 255, 0.17);
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.64), rgba(12, 12, 12, 0.54) 58%, rgba(8, 8, 8, 0.72)),
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.12), transparent 36%);
    backdrop-filter: blur(18px) saturate(1.05);
}

.toronto-page .editorial-section {
    padding-top: clamp(126px, 12vw, 190px);
    padding-bottom: clamp(126px, 12vw, 190px);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.5));
}

.toronto-page .process-section {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.32));
}

.toronto-page .contact-booking-section {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.58));
}

.toronto-page .scroll-reveal-section {
    opacity: 1;
    filter: none;
    transform: none;
}

.toronto-page .reveal-item {
    opacity: 1;
    filter: none;
    transform: none;
}

.toronto-page .editorial-section > .section-title h1,
.toronto-page .process-section .section-title h1,
.toronto-page .contact-booking-section h1 {
    color: rgba(255, 255, 255, 0.95);
}

.toronto-page .editorial-section .agency-kicker,
.toronto-page .editorial-section > .section-title p,
.toronto-page .process-section .agency-kicker,
.toronto-page .process-section .section-title p,
.toronto-page .contact-booking-section .agency-kicker,
.toronto-page .contact-booking-section p {
    color: rgba(255, 255, 255, 0.62);
}

.toronto-page .feature-card-grid article,
.toronto-page .process-grid article,
.toronto-page .calendar-panel,
.toronto-page .contact-copy-panel,
.toronto-page .chat-window,
.toronto-page .chat-demo-section {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.68), rgba(21, 21, 19, 0.5));
    backdrop-filter: blur(18px) saturate(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 30px 90px rgba(0, 0, 0, 0.3);
}

.toronto-page .feature-card-grid article:hover,
.toronto-page .feature-card-grid article:focus-within,
.toronto-page .chat-window:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 40px 110px rgba(0, 0, 0, 0.42);
}

.toronto-page .feature-card-grid h2,
.toronto-page .process-grid h2,
.toronto-page .calendar-panel h2,
.toronto-page .chat-head-name {
    color: rgba(255, 255, 255, 0.96);
}

.toronto-page .feature-card-grid p,
.toronto-page .process-grid span,
.toronto-page .process-grid p,
.toronto-page .calendar-panel span,
.toronto-page .calendar-panel p,
.toronto-page .calendar-panel li,
.toronto-page .chat-head-name span,
.toronto-page .chat-head-status {
    color: rgba(255, 255, 255, 0.62);
}

.toronto-page .feature-card-grid article p + p {
    border-top-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
}

.toronto-page .contact-copy-panel {
    color: rgba(255, 255, 255, 0.9);
}

.toronto-page .contact-meta-grid,
.toronto-page .booking-detail-grid {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.toronto-page .contact-meta-grid span,
.toronto-page .booking-detail-grid span {
    color: rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.055);
}

.toronto-page .contact-email-link,
.toronto-page .feature-card-grid a,
.toronto-page .calendar-panel a {
    color: rgba(255, 255, 255, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.58);
}

.toronto-page .chat-demo-section {
    background:
        linear-gradient(135deg, rgba(6, 6, 6, 0.62), rgba(20, 20, 18, 0.44));
}

.toronto-page .chat-demo-copy h2 {
    color: rgba(255, 255, 255, 0.96);
}

.toronto-page .chat-demo-copy .agency-kicker,
.toronto-page .chat-demo-copy p {
    color: rgba(255, 255, 255, 0.64);
}

.toronto-page .chat-head {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.toronto-page .chat-head-status::before {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.toronto-page .chat-avatar {
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

.toronto-page .msg-bubble,
.toronto-page .typing-bubble {
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
}

.toronto-page .msg-user .msg-bubble {
    color: rgba(0, 0, 0, 0.86);
    background: rgba(255, 255, 255, 0.92);
}

.toronto-page .suggestions {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.toronto-page .chip {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.045);
}

.toronto-page .chip:hover,
.toronto-page .chip:focus-visible {
    border-color: rgba(255, 255, 255, 0.26);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

.toronto-page .chat-input textarea {
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.07);
}

.toronto-page .chat-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.toronto-page .send-btn {
    color: rgba(0, 0, 0, 0.9);
    background: rgba(255, 255, 255, 0.9);
}

.toronto-page .site-footer {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.88));
    backdrop-filter: blur(10px);
}

.toronto-page .footer-brand h2,
.toronto-page .footer-brand .flow-mark {
    color: rgba(255, 255, 255, 0.94);
}

.toronto-page .back-to-top {
    color: rgba(255, 255, 255, 0.78);
}

.toronto-page .sound-toggle {
    z-index: 30;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.46);
}

.toronto-page .sound-toggle:hover,
.toronto-page .sound-toggle:focus-visible {
    color: rgba(255, 255, 255, 0.96);
}

@media (prefers-color-scheme: dark) {
    .toronto-page .sound-toggle {
        display: block;
        color: rgba(255, 255, 255, 0.82);
        opacity: 0.82;
        text-shadow: 0 1px 18px rgba(0, 0, 0, 0.52);
    }

    .toronto-page .sound-toggle:hover,
    .toronto-page .sound-toggle:focus-visible {
        color: rgba(255, 255, 255, 0.98);
        opacity: 1;
    }
}

@media (max-width: 620px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .splash img {
        width: 92vw;
    }

    .site-topbar {
        height: 112px;
    }

    .home-logo {
        top: 22px;
        left: 20px;
        max-width: 46vw;
        font-size: 1rem;
    }

    .top-menu {
        top: 26px;
        left: 20px;
    }

    .entry-status {
        top: 58px;
        width: min(92vw, 420px);
        max-width: calc(100vw - 40px);
        flex-wrap: wrap;
        gap: 10px 18px;
        row-gap: 10px;
        font-size: 0.66rem;
        line-height: 1.25;
    }

    .toronto-page .home-logo {
        top: 22px;
        left: 50%;
        max-width: 44vw;
    }

    .toronto-page .entry-status {
        top: 62px;
        right: 20px;
        left: auto;
        width: calc(100vw - 40px);
        justify-content: center;
        text-align: center;
        transform: none;
    }

    .top-links {
        top: 24px;
        right: 20px;
        gap: 12px;
        max-width: 46vw;
        justify-content: flex-end;
    }

    .top-about {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }

    .top-icon-link {
        width: 19px;
        height: 19px;
    }

    .top-icon-link svg {
        width: 16px;
        height: 16px;
    }

    .weather-forecast {
        width: min(92vw, 360px);
        max-height: min(58vh, 420px);
        overflow-y: auto;
    }

    .toronto-page .weather-forecast {
        right: auto;
        left: 50%;
        width: calc(100vw - 40px);
        transform: translate(-50%, 8px);
    }

    .toronto-page .weather-status:hover .weather-forecast,
    .toronto-page .weather-status:focus .weather-forecast,
    .toronto-page .weather-status:focus-within .weather-forecast {
        transform: translate(-50%, 0);
    }

    .weather-forecast span {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .city-video-panel {
        top: 0;
        bottom: 0;
        width: 50vw;
        opacity: 0.34;
    }

    .city-video-panel video {
        filter: grayscale(1) blur(2px) saturate(0.6);
    }

    .location-nav {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .location-nav a {
        width: min(76vw, 280px);
        min-width: 0;
        min-height: 82px;
        font-size: clamp(1rem, 5vw, 1.42rem);
    }

    .contact-panel {
        right: 50%;
        bottom: 90px;
        width: min(88vw, 340px);
        max-height: calc(100svh - 150px);
        padding: 20px;
        overflow-y: auto;
        transform: translate(50%, 18px);
    }

    .contact-panel.is-open {
        transform: translate(50%, 0);
    }

    .home-contact {
        bottom: 58px;
    }

    .sound-toggle {
        right: 20px;
        bottom: 22px;
        font-size: 0.62rem;
    }

    .location-back {
        top: 118px;
        left: 20px;
    }

    .toronto-page .location-back {
        position: absolute;
        top: 118px;
    }

    .toronto-page .back-to-top {
        display: none;
    }

    .toronto-section {
        min-height: auto;
        padding-right: 20px;
        padding-left: 20px;
        scroll-snap-align: none;
    }

    .agency-hero {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
        min-height: auto;
        padding-top: 168px;
        padding-bottom: 54px;
    }

    .agency-hero::before {
        inset: 132px 12px 32px;
        width: auto;
    }

    .agency-hero .section-title h1 {
        font-size: clamp(2.7rem, 14vw, 4.2rem);
        line-height: 0.98;
    }

    .hero-copy {
        padding-left: 18px;
    }

    .hero-proof {
        padding: 22px;
    }

    .hero-side {
        grid-template-columns: 1fr;
        width: 100%;
        transform: none;
    }

    .toronto-page .agency-hero {
        --hero-panel-width: calc(100vw - 40px);
        --hero-panel-left: 20px;
        --hero-panel-top: 168px;
        --hero-panel-height: auto;
        min-height: auto;
        padding-top: 168px;
        padding-bottom: 54px;
    }

    .toronto-page .agency-hero::before {
        top: 132px;
        right: 12px;
        bottom: 32px;
        left: 12px;
        width: auto;
        height: auto;
        background:
            linear-gradient(180deg, rgba(26, 26, 25, 0.7), rgba(12, 12, 12, 0.78)),
            radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.1), transparent 38%);
    }

    .toronto-page .hero-copy {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0 18px;
    }

    .toronto-page .agency-hero .section-title h1 {
        max-width: none;
        font-size: clamp(2.3rem, 11vw, 4rem);
    }

    .toronto-page .hero-side {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 24px;
        padding: 0 18px;
        pointer-events: auto;
    }

    .contact-booking-section {
        gap: 34px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .contact-meta-grid {
        grid-template-columns: 1fr;
    }

    .calendar-panel {
        max-width: none;
        justify-self: stretch;
    }

    .section-title,
    .principle-grid,
    .package-grid,
    .trust-strip,
    .feature-card-grid,
    .chat-demo-section,
    .browse-grid,
    .process-grid,
    .contact-booking-section,
    .footer-columns {
        grid-template-columns: 1fr;
    }

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

    .agency-actions {
        gap: 22px;
        align-items: stretch;
    }

    .agency-actions a {
        justify-content: center;
        min-height: 48px;
        text-align: center;
    }

    .trust-strip div {
        min-height: auto;
    }

    .principle-grid article + article,
    .package-grid article + article,
    .feature-card-grid article + article,
    .browse-grid article + article,
    .process-grid article + article,
    .trust-strip div + div,
    .contact-booking-section > div + div,
    .chat-demo-section > div + div {
        padding-left: 0;
        border-left: 0;
        border-top-color: rgba(0, 0, 0, 0.08);
    }

    .chat-window {
        height: min(560px, calc(100svh - 72px));
        min-height: 560px;
    }

    .toronto-page .editorial-section {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .toronto-page .feature-card-grid article {
        min-height: auto;
    }

    .toronto-page .chat-demo-section {
        grid-template-columns: 1fr;
        margin-top: 72px;
        padding: 28px;
    }

    .toronto-page .chat-window {
        height: min(560px, calc(100svh - 96px));
        min-height: 0;
        width: 100%;
    }

    .toronto-page .chat-demo-copy {
        padding: 0;
    }

    .toronto-page .chat-demo-section > div + div {
        padding-left: 0;
        border-left: 0;
    }

    .toronto-page .chat-head {
        padding: 22px;
    }

    .toronto-page .chat-log {
        padding: 22px;
    }

    .toronto-page .suggestions {
        max-height: 104px;
        padding: 14px 22px 6px;
        overflow-y: auto;
    }

    .toronto-page .chat-input {
        gap: 10px;
        padding: 14px 22px 22px;
    }

    .toronto-page .chip {
        font-size: 0.64rem;
        letter-spacing: 0.07em;
    }

    .toronto-page .send-btn {
        width: 44px;
        height: 44px;
    }

    .toronto-page .chat-head-status {
        letter-spacing: 0.08em;
    }

    .toronto-page .contact-booking-section {
        grid-template-columns: 1fr;
        max-width: none;
        margin-top: 0;
        padding: 86px 20px;
    }

    .toronto-page .contact-copy-panel,
    .toronto-page .calendar-panel {
        width: 100%;
        min-width: 0;
        padding: 28px;
    }

    .toronto-page .contact-copy-panel > p,
    .toronto-page .calendar-panel p {
        max-width: 100%;
    }

    .contact-email-link {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .about-page main {
        max-width: none;
        padding: 132px 20px 56px;
    }

    .about-page .toronto-section {
        padding: 48px 0;
    }

    .about-page .intro-section {
        padding-top: 28px;
    }

    .about-page .section-label {
        margin-bottom: 28px;
        font-size: 0.78rem;
    }

    .about-page .section-title {
        gap: 22px;
        margin-bottom: 36px;
    }

    .about-page .section-title h1 {
        max-width: 100%;
        font-size: clamp(2.15rem, 11vw, 3.35rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .about-page .section-title p {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .about-page .principle-grid {
        gap: 0;
        margin-top: 34px;
    }

    .about-page .principle-grid article {
        padding: 22px 0;
    }

    .about-page .principle-grid h2 {
        font-size: clamp(1.28rem, 7vw, 2rem);
        line-height: 1.12;
    }

    .about-page .principle-grid p {
        max-width: 100%;
    }

    .msg {
        max-width: 90%;
    }

    .suggestions {
        max-height: 112px;
        overflow-y: auto;
    }

    .footer-bottom {
        display: grid;
        align-items: start;
        padding-top: 0;
    }

    .toronto-nav a {
        font-size: clamp(2rem, 10vw, 3.6rem);
    }
}

@media (prefers-color-scheme: dark) and (max-width: 620px) {
    .principle-grid article + article,
    .package-grid article + article,
    .feature-card-grid article + article,
    .browse-grid article + article,
    .process-grid article + article,
    .trust-strip div + div,
    .contact-booking-section > div + div,
    .chat-demo-section > div + div {
        border-top-color: rgba(255, 255, 255, 0.14);
    }

    body:not(.toronto-page) .entry-status,
    body:not(.toronto-page) .home-logo,
    body:not(.toronto-page) .top-links,
    body:not(.toronto-page) .location-back {
        color: rgba(255, 255, 255, 0.82);
    }

    body:not(.toronto-page) .weather-forecast {
        right: auto;
        left: 50%;
        width: calc(100vw - 40px);
        transform: translate(-50%, 8px);
    }

    body:not(.toronto-page) .weather-status:hover .weather-forecast,
    body:not(.toronto-page) .weather-status:focus .weather-forecast,
    body:not(.toronto-page) .weather-status:focus-within .weather-forecast {
        transform: translate(-50%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .splash,
    .splash img,
    .entry-page::before,
    .entry-welcome,
    .location-home,
    .location-nav a::after,
    .location-back::after,
    .back-to-top,
    .toronto-page .reveal-item {
        transition-duration: 0.01ms;
    }

    .toronto-page .reveal-item {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
