:root {
    --bb-ink: #3f2d22;
    --bb-green: #8f2f4d;
    --bb-green-dark: #5f1831;
    --bb-line: rgba(95, 24, 49, 0.14);
    --bb-soft-shadow: 0 24px 60px rgba(95, 24, 49, 0.16);
    --bb-footer-tint: rgba(252, 246, 238, 0.82);
    --bb-header-height: 5rem;
    --bb-title-height: 12.5rem;
    --bb-footer-height: 18rem;
    --bb-phone-width: 18.4rem;
    --bb-phone-height: 39.8rem;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(220, 191, 151, 0.28), transparent 28%),
        radial-gradient(circle at top right, rgba(232, 213, 188, 0.34), transparent 26%),
        linear-gradient(180deg, #fbf5ee 0%, #efdfcb 100%);
    color: var(--bb-ink);
    font-family: "Manrope", sans-serif;
}

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    position: relative;
    display: grid;
    grid-template-rows: auto var(--bb-title-height) auto;
    min-height: 100vh;
    padding-bottom: calc(var(--bb-footer-height) - 2rem);
    overflow-x: hidden;
    overflow-y: visible;
}

.site-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(251, 245, 238, 0.24), rgba(245, 234, 220, 0.42)),
        url("/images/bbuddy_background.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.92;
    pointer-events: none;
    z-index: 0;
}

.site-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 245, 238, 0.06) 0%, rgba(247, 237, 225, 0.2) 38%, rgba(243, 230, 215, 0.56) 72%, rgba(250, 243, 235, 0.9) 100%);
    pointer-events: none;
    z-index: 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--bb-line);
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(251, 245, 238, 0.92) 0%, rgba(244, 233, 220, 0.82) 100%);
    box-shadow: 0 12px 34px rgba(91, 64, 47, 0.1);
}

.topbar-inner {
    min-height: var(--bb-header-height);
    box-sizing: border-box;
    gap: 1.25rem;
    padding: 0.65rem 2rem;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem;
    border: 1px solid rgba(91, 64, 47, 0.12);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.82) 0%, rgba(247, 238, 228, 0.74) 100%);
    box-shadow: 0 10px 24px rgba(91, 64, 47, 0.09);
}

.header-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 0;
    background: transparent;
    color: rgba(63, 45, 34, 0.82);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-nav-icon {
    font-size: 1.22rem !important;
}

.header-nav-link:hover {
    color: var(--bb-green-dark);
    background: rgba(255, 250, 245, 0.92);
}

.header-nav-link.is-active {
    color: #ffffff;
    background: linear-gradient(180deg, var(--bb-green) 0%, var(--bb-green-dark) 100%);
    box-shadow: 0 12px 22px rgba(23, 58, 43, 0.24);
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.brand-wordmark {
    display: block;
    width: auto;
    height: 6.00rem;
/*    max-width: min(46vw, 28rem);*/
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem;
    border: 1px solid rgba(91, 64, 47, 0.12);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.84) 0%, rgba(247, 238, 228, 0.76) 100%);
}

.language-chip {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(63, 45, 34, 0.76);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.55rem 0.8rem;
}

.language-chip.is-active {
    background: linear-gradient(180deg, var(--bb-green) 0%, var(--bb-green-dark) 100%);
    color: #ffffff;
    box-shadow: 0 12px 22px rgba(23, 58, 43, 0.24);
}

.cta-primary {
    border-radius: 0.95rem !important;
    box-shadow: 0 16px 32px rgba(23, 58, 43, 0.22);
    text-transform: none !important;
    font-weight: 700 !important;
}

.title-section-home,
.footer-section {
    position: relative;
    z-index: 1;
}

.content-section-home {
    position: relative;
    z-index: 2;
}

.title-section-home {
    display: grid;
    place-items: center;
    width: 100%;
    height: var(--bb-title-height);
    min-height: var(--bb-title-height);
    padding: 1.5rem 2rem 2.5rem;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.content-section-home {
    min-height: max-content;
    overflow: visible;
    padding: 3.25rem 2rem 2rem;
}

.content-section-layout {
    display: grid;
    grid-template-columns: minmax(0, 19rem) minmax(0, 32rem);
    justify-content: center;
    align-items: start;
    column-gap: 4.5rem;
    min-height: 100%;
    margin: 0 auto;
}

.content-section-column {
    min-width: 0;
}

.content-section-column-phone {
    display: flex;
    justify-content: center;
    position: relative;
    left: -1.5rem;
    z-index: 4;
}

.content-section-column-copy {
    display: flex;
    justify-content: flex-start;
    height: var(--bb-phone-height);
    max-height: var(--bb-phone-height);
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
    transform: translateX(1.5rem);
}

.content-section-column-copy .feature-stack {
    padding: 1.5rem 2.25rem;
    border-radius: 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.46) 100%);
}

.iphone-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(100%, var(--bb-phone-width));
    height: var(--bb-phone-height);
    margin-bottom: -6.25rem;
    padding: 0.62rem 0.78rem 0.74rem;
    border: 3px solid var(--bb-green-dark);
    border-radius: 2.7rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 247, 0.98) 100%);
    box-shadow: 0 30px 58px rgba(23, 58, 43, 0.18);
    z-index: 4;
}

.iphone-notch {
    position: absolute;
    top: 0.38rem;
    left: 50%;
    width: 6.2rem;
    height: 1.22rem;
    border-radius: 999px;
    background: #111111;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
}

.iphone-notch::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #2d2d2d 0%, #161616 45%, #060606 100%);
    transform: translateY(-50%);
    opacity: 0.95;
}

.iphone-notch::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.05rem;
    width: 2.05rem;
    height: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-50%);
}

.phone-status,
.chat-header,
.chat-thread,
.stay-card,
.composer {
    position: relative;
    z-index: 1;
}

.phone-status {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.02rem;
    padding: 0 0.34rem;
    color: #111111;
    font-size: 0.74rem;
    font-weight: 700;
    top: 0.02rem;
}

.status-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.status-network {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.08rem;
    height: 0.62rem;
}

.status-network span {
    display: block;
    width: 0.12rem;
    border-radius: 999px;
    background: currentColor;
}

.status-network span:nth-child(1) { height: 0.18rem; }
.status-network span:nth-child(2) { height: 0.28rem; }
.status-network span:nth-child(3) { height: 0.42rem; }
.status-network span:nth-child(4) { height: 0.56rem; }

.status-wifi {
    position: relative;
    width: 0.72rem;
    height: 0.56rem;
}

.status-wifi span {
    position: absolute;
    left: 50%;
    border: 0.09rem solid currentColor;
    border-top-color: currentColor;
    border-right-color: currentColor;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 100% 0 0;
    transform: translateX(-50%) rotate(-45deg);
}

.status-wifi span:nth-child(1) {
    bottom: 0;
    width: 0.22rem;
    height: 0.22rem;
}

.status-wifi span:nth-child(2) {
    bottom: 0.04rem;
    width: 0.38rem;
    height: 0.38rem;
}

.status-wifi span:nth-child(3) {
    bottom: 0.08rem;
    width: 0.54rem;
    height: 0.54rem;
}

.status-battery {
    position: relative;
    width: 1rem;
    height: 0.5rem;
    border: 0.09rem solid currentColor;
    border-radius: 0.14rem;
    box-sizing: border-box;
}

.status-battery::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.16rem;
    width: 0.1rem;
    height: 0.24rem;
    border-radius: 0 0.08rem 0.08rem 0;
    background: currentColor;
    transform: translateY(-50%);
}

.status-battery-level {
    position: absolute;
    top: 0.05rem;
    bottom: 0.05rem;
    left: 0.05rem;
    width: calc(80% - 0.05rem);
    border-radius: 0.06rem;
    background: currentColor;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(91, 64, 47, 0.08);
}

.host-request-shell {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    color: #111111;
}

.host-request-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(91, 64, 47, 0.08);
}

.host-request-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.host-request-time {
    color: rgba(91, 64, 47, 0.56);
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.host-request-guest {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
}

.host-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid #c7dfd1;
    background: linear-gradient(180deg, #2f6b4f 0%, #173a2b 100%);
    color: #fff9f4;
    box-shadow: 0 10px 18px rgba(23, 58, 43, 0.16);
}

.host-request-guest-copy {
    display: grid;
    gap: 0.34rem;
}

.host-request-guest-name {
    font-size: 0.95rem;
    font-weight: 800;
}

.host-request-guest-meta,
.host-request-guest-dates,
.host-request-guest-room {
    font-size: 0.8rem;
    color: #111111;
}

.host-request-guest-room {
    margin-top: 0.15rem;
}

.host-request-details {
    display: grid;
    gap: 0.72rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(91, 64, 47, 0.08);
}

.host-request-section-title {
    font-size: 0.88rem;
    font-weight: 800;
}

.host-request-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.82rem;
}

.host-request-row span {
    color: #111111;
}

.host-request-row strong {
    color: #111111;
    font-weight: 700;
}

.host-request-row-total {
    margin-top: 0.25rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(91, 64, 47, 0.08);
    font-size: 0.9rem;
}

.host-request-row-total strong {
    font-size: 1.25rem;
    font-weight: 800;
}

.host-request-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 3rem;
    border-radius: 0.85rem;
    font-size: 0.95rem;
    font-weight: 800;
}

.host-request-action-accept {
    border: 0;
    background: linear-gradient(180deg, var(--bb-green) 0%, var(--bb-green-dark) 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(23, 58, 43, 0.2);
}

.host-request-action-decline {
    border: 1.5px solid rgba(255, 96, 74, 0.52);
    background: rgba(255, 255, 255, 0.72);
    color: #f25542;
}

.chat-title {
    font-weight: 700;
    font-size: 0.96rem;
}

.chat-subtitle {
    font-size: 0.73rem;
    color: #111111;
}

.scenic-avatar {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0)),
        linear-gradient(180deg, #2f6b4f 0%, #173a2b 100%);
    color: #f5faf7;
}

.chat-tools {
    margin-left: auto;
    color: #111111;
    font-size: 0.95rem;
    font-weight: 700;
}

.avatar {
    display: inline-grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 2px solid #c7dfd1;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
}

.chat-thread {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.bubble {
    max-width: 68%;
    padding: 0.62rem 0.78rem;
    border-radius: 0.62rem;
    font-size: 0.75rem;
    line-height: 1.38;
    box-shadow: 0 10px 20px rgba(23, 58, 43, 0.08);
}

.bubble-soft {
    background: linear-gradient(180deg, #fdfefe 0%, #f7f8f9 100%);
    color: #111111;
}

.bubble-green {
    justify-self: end;
    background: linear-gradient(180deg, var(--bb-green) 0%, var(--bb-green-dark) 100%);
    color: white;
}

.guest-chat-thread {
    gap: 0.85rem;
}

.guest-bubble {
    max-width: 76%;
    border-radius: 1rem;
    font-size: 0.83rem;
}

.guest-chat-thread .bubble-soft {
    max-width: 82%;
}

.guest-chat-thread .bubble-green {
    max-width: 72%;
}

.stay-card {
    margin-top: 0.95rem;
    padding: 0.46rem;
    border: 1px solid rgba(91, 64, 47, 0.1);
    border-radius: 0.82rem;
    background: linear-gradient(180deg, rgba(254, 254, 254, 0.98) 0%, rgba(247, 248, 249, 0.98) 100%);
    box-shadow: 0 16px 34px rgba(91, 64, 47, 0.1);
}

.guest-payment-card {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 18px 36px rgba(91, 64, 47, 0.1);
}

.guest-payment-title {
    font-weight: 700;
    font-size: 0.96rem;
}

.guest-payment-meta {
    margin-top: 0.25rem;
    color: #111111;
    font-size: 0.78rem;
}

.guest-payment-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(91, 64, 47, 0.1);
    font-size: 0.98rem;
}

.guest-payment-total strong {
    font-size: 1.6rem;
    line-height: 1;
}

.guest-payment-footnote {
    margin-top: 0.7rem;
    color: #111111;
    font-size: 0.74rem;
    text-align: center;
}

.pay-button {
    width: calc(100% - 0.1rem);
    height: 3.1rem;
    margin: 0.95rem auto 0;
    padding: 0 1rem;
    border: 0;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, var(--bb-green) 0%, var(--bb-green-dark) 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(23, 58, 43, 0.2);
}

.pay-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
}

.pay-brand-apple {
    font-size: 1.05rem;
    font-weight: 700;
    gap: 0.42rem;
}

.pay-apple-image {
    display: block;
    height: 1.35rem;
    width: auto;
    max-width: 100%;
    margin: 0;
    transform: translateY(-0.08rem);
}

.pay-brand-label {
    display: inline-block;
    line-height: 1;
}

.pay-brand-dual {
    gap: 0.45rem;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.05rem;
    padding: 0.18rem 0.48rem;
    border-radius: 0.38rem;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    text-transform: none;
}

.pay-badge-wero {
    background: #ffffff;
    color: #111111;
}

.stay-image {
    height: 4.75rem;
    border-radius: 0.62rem;
    background:
        linear-gradient(180deg, rgba(91, 64, 47, 0.04), rgba(91, 64, 47, 0.18)),
        url("/images/room-card-bed.png");
    background-position: center 58%;
    background-repeat: no-repeat;
    background-size: cover;
}

.stay-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.7rem;
}

.stay-name {
    font-weight: 700;
    font-size: 0.82rem;
    color: #111111;
}

.stay-price {
    margin-top: 0.22rem;
    font-size: 0.75rem;
    color: #111111;
}

.stay-check {
    display: grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--bb-green) 0%, var(--bb-green-dark) 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    flex: 0 0 auto;
}

.stay-meta {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.4rem;
    color: #111111;
    font-size: 0.7rem;
    flex-wrap: wrap;
}

.stay-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.24rem;
}

.composer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-top: auto;
    padding: 0.38rem 0.38rem 0.38rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #fdfefe 0%, #f5f7f8 100%);
    color: #111111;
    font-size: 0.74rem;
}

.composer-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.composer button {
    width: 2.15rem;
    height: 2.15rem;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--bb-green) 0%, var(--bb-green-dark) 100%);
    color: white;
    cursor: pointer;
    font-size: 0.92rem;
    box-shadow: 0 10px 20px rgba(23, 58, 43, 0.22);
}

.feature-stack {
    width: min(100%, 32rem);
    margin: 0;
    height: 100%;
    justify-content: space-between;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.45rem;
    align-items: flex-start;
}

.feature-item > div:last-child,
.feature-item > div:last-child p,
.feature-item > div:last-child p * {
    color: #111111 !important;
}

.feature-item h3 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--bb-green);
}

.feature-item p {
    margin: 0.18rem 0 0;
    color: #111111 !important;
    font-size: 1rem;
    line-height: 1.7;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-top: -0.12rem;
    color: var(--bb-green-dark);
}

.feature-icon .mud-icon-root {
    font-size: 2.55rem;
}

.simple-home-copy {
    text-align: center;
    width: min(100%, 66rem);
    max-width: 66rem;
    padding: 0.95rem 3rem 0.85rem;
    border-radius: 2rem;
    border: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.46) 100%);
    backdrop-filter: none;
    box-shadow: none;
}

.simple-home-copy h1{
    margin: 0;
    color: #173a2b;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.95;
    max-width: 24ch;
    margin-inline: auto;
    border: 0;
    outline: none;
    box-shadow: none;
    text-wrap: balance;
    text-shadow: 0 1px 0 rgba(255, 250, 245, 0.55);
}

.simple-home-copy h1:focus,
.simple-home-copy h1:focus-visible,
.simple-home-copy h1 *,
.simple-home-copy h1 *:focus,
.simple-home-copy h1 *:focus-visible {
    border: 0;
    outline: none !important;
    box-shadow: none !important;
}

.simple-home-copy h1 {
    font-size: clamp(1.95rem, 3vw, 3.3rem);
}

.simple-home-copy p{
    position: relative;
    display: inline-block;
    color: #111111;
    font-size: 1.02rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.72;
    max-width: 50rem;
    white-space: normal;
    text-wrap: balance;
}

.simple-home-copy p {
    margin: 1rem auto 0;
}

.simple-home-copy p::before,
.simple-home-copy p::after {
    color: rgba(35, 69, 52, 0.46);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5em;
    font-style: normal;
    font-weight: 700;
    line-height: 0;
    vertical-align: middle;
}

.simple-home-copy p::before {
    content: "\201C";
    margin-right: 0.25rem;
}

.simple-home-copy p::after {
    content: "\201D";
    margin-left: 0.25rem;
}

.footer-section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--bb-footer-height);
    margin: 0;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        rgba(251, 247, 241, 0) 0%,
        rgba(250, 243, 235, 0.16) 25%,
        rgba(247, 237, 227, 0.66) 62%,
        rgba(252, 247, 241, 0.97) 100%
    );
    isolation: isolate;
    z-index: 1;
}

.footer-section-grid {
    margin: 0 !important;
    height: 100%;
}

.footer-section-grid > .mud-grid-item {
    display: flex;
    align-items: center;
}

.footer-section-spacer {
    min-height: 1px;
}

.footer-section-sidecopy {
    color: rgba(91, 64, 47, 0.6);
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-section-media {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 1rem;
}

.footer-section-image {
    display: block;
    width: min(100%, 16rem);
    max-height: 11rem;
    object-fit: contain;
}

.footer-section-button {
    justify-self: center;
}

.footer-section-copy {
    max-width: 34rem;
    margin-left: 0;
    text-align: left;
}

.footer-section-copy p {
    max-width: 27rem;
    margin: 1rem 0 0;
}

.accent-script {
    color: var(--bb-green);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.44em;
}

.contact-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.contact-card {
    width: min(100%, 40rem);
    padding: 2rem;
    border: 1px solid var(--bb-line);
    border-radius: 2rem;
    background: rgba(251, 245, 238, 0.84);
    box-shadow: var(--bb-soft-shadow);
}

.contact-card h1 {
    margin-top: 1.4rem;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.contact-points {
    display: grid;
    gap: 1rem;
    margin: 1.8rem 0;
}

.contact-points span {
    color: rgba(63, 45, 34, 0.76);
}

.contact-points div {
    display: grid;
    gap: 0.2rem;
}

@media (max-width: 980px) {
    .topbar {
        text-align: center;
    }

    .topbar-inner {
        justify-content: center !important;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .language-switcher {
        margin: 0 auto;
    }
}

@media (max-width: 720px) {
    .site-shell {
        grid-template-rows: auto auto minmax(0, 1fr);
    }

    .topbar,
    .topbar-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .topbar-inner {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .language-switcher {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand {
        font-size: 1.4rem;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .title-section-home {
        height: auto;
        min-height: 10rem;
        padding-bottom: 0;
    }

    .content-section-home {
        padding: 1rem 1rem calc(var(--bb-footer-height) + 1rem);
    }

    .content-section-layout {
        grid-template-columns: 1fr;
        row-gap: 2rem;
        align-items: center;
    }

    .content-section-column-copy {
        justify-content: center;
        height: auto;
        max-height: none;
        padding-top: 0;
        padding-bottom: 0;
    }

    .iphone-mockup {
        margin-bottom: 0;
        height: auto;
        aspect-ratio: 9.2 / 19.9;
    }

    .feature-stack {
        height: auto;
        justify-content: flex-start;
    }

    .feature-item + .feature-item {
        margin-top: 2.75rem;
    }

    .footer-section {
        height: auto;
        min-height: 14rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-top: 3rem;
        padding-right: 1rem;
        padding-bottom: 1.5rem;
        padding-left: 1rem;
        overflow: visible;
    }

    .footer-section-image {
        width: min(100%, 14rem);
        max-height: none;
    }

    .footer-section-copy {
        margin-left: 0;
        text-align: center;
    }

    .footer-section-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card {
        padding: 1rem;
    }
}
