@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

:root {
    --tf-ink: #1a2332;
    --tf-muted: #6b7280;
    --tf-line: #e8edf2;
    --tf-bg: #f7f9fb;
    --tf-white: #ffffff;
    --tf-sea: #0e7490;
    --tf-sea-dark: #0b5f73;
    --tf-sand: #f4b942;
    --tf-hero: #0c4a6e;
    --tf-radius: 12px;
    --tf-shadow: 0 10px 30px rgba(15, 40, 60, .08);
    --tf-font: 'DM Sans', system-ui, sans-serif;
    --tf-display: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }
body.tf-front {
    margin: 0;
    font-family: var(--tf-font);
    color: var(--tf-ink);
    background: var(--tf-white);
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }

/* —— Top nav —— */
.tf-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(14, 116, 144, .08);
}
.tf-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.tf-brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--tf-ink);
}
.tf-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #0e7490, #0369a1);
    color: #fff;
}
.tf-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.tf-nav-links a {
    text-decoration: none;
    color: var(--tf-muted);
    font-weight: 500;
    font-size: .95rem;
}
.tf-nav-links a:hover,
.tf-nav-links a.active { color: var(--tf-sea); }
.tf-nav-links a.tf-btn {
    font-weight: 600;
}
.tf-nav-links a.tf-btn-sea,
.tf-nav-links a.tf-btn-sea:hover,
.tf-nav-links a.tf-btn-sea:focus,
.tf-nav-links a.tf-btn-sea.active {
    color: #fff;
}
.tf-nav-links a.tf-btn-sea:hover,
.tf-nav-links a.tf-btn-sea:focus {
    background: var(--tf-sea-dark);
}
.tf-nav-links a.tf-btn-outline,
.tf-nav-links a.tf-btn-outline:hover,
.tf-nav-links a.tf-btn-outline:focus {
    color: var(--tf-ink);
}
.tf-nav-links a.tf-btn-outline:hover,
.tf-nav-links a.tf-btn-outline:focus {
    color: var(--tf-sea);
}
.tf-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.tf-nav-avatar-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.tf-nav-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}
.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: 0;
    border-radius: 999px;
    padding: .7rem 1.35rem;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    cursor: pointer;
    transition: .2s ease;
}
.tf-btn-sea { background: var(--tf-sea); color: #fff; }
.tf-btn-sea:hover { background: var(--tf-sea-dark); color: #fff; }
.tf-btn-sand { background: var(--tf-sand); color: #1a2332; }
.tf-btn-sand:hover { filter: brightness(.95); color: #1a2332; }
.tf-btn-outline {
    background: transparent;
    border: 1px solid #cfd8e3;
    color: var(--tf-ink);
}
.tf-btn-outline:hover { border-color: var(--tf-sea); color: var(--tf-sea); }
.tf-btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.tf-btn-lg { padding: .9rem 1.6rem; font-size: 1rem; }
.tf-btn-block { width: 100%; }

.tf-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    color: var(--tf-ink);
}

/* —— Hero —— */
.tf-hero {
    position: relative;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(8, 47, 73, .78) 0%, rgba(14, 116, 144, .45) 55%, rgba(8, 47, 73, .25) 100%),
        url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=1800&q=90') center/cover no-repeat;
}
.tf-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}
.tf-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.25rem 6rem;
}
.tf-hero-eyebrow {
    display: inline-block;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 600;
    opacity: .9;
    margin-bottom: .85rem;
}
.tf-hero h1 {
    font-family: var(--tf-display);
    font-weight: 600;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    line-height: 1.05;
    max-width: 12ch;
    margin: 0 0 1rem;
}
.tf-hero-lead {
    max-width: 34rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: .92;
    margin-bottom: 1.75rem;
}
.tf-search {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    gap: .65rem;
    background: #fff;
    padding: .65rem;
    border-radius: 18px;
    box-shadow: var(--tf-shadow);
    max-width: 820px;
}
.tf-search label {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--tf-muted);
    margin-bottom: .2rem;
    font-weight: 600;
}
.tf-search .field {
    padding: .55rem .85rem;
    border-radius: 12px;
    background: #f4f7fa;
}
.tf-search input,
.tf-search select {
    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
    font: inherit;
    color: var(--tf-ink);
    padding: 0;
}
.tf-search .tf-btn { border-radius: 14px; padding-inline: 1.5rem; }

/* —— Sections —— */
.tf-section { padding: 4.5rem 0; }
.tf-section-muted { background: var(--tf-bg); }
.tf-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.tf-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
}
.tf-section-head h2,
.tf-page-title {
    font-family: var(--tf-display);
    font-weight: 600;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0;
}
.tf-section-head p,
.tf-sub {
    color: var(--tf-muted);
    margin: .4rem 0 0;
    max-width: 40rem;
}
.tf-link {
    color: var(--tf-sea);
    font-weight: 600;
    text-decoration: none;
}
.tf-link:hover { text-decoration: underline; }

/* —— Destination chips —— */
.tf-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.tf-dest {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    min-height: 180px;
    text-decoration: none;
    color: #fff;
    background: #0c4a6e center/cover no-repeat;
    box-shadow: var(--tf-shadow);
}
.tf-dest::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(8,30,50,.8));
}
.tf-dest-body {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
}
.tf-dest h3 { margin: 0; font-size: 1.15rem; font-weight: 700; }
.tf-dest span { font-size: .85rem; opacity: .9; }

/* —— How steps —— */
.tf-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.tf-step {
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: 16px;
    padding: 1.4rem;
}
.tf-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(14, 116, 144, .12);
    color: var(--tf-sea);
    font-weight: 700;
    margin-bottom: .9rem;
}
.tf-step h3 { font-size: 1.05rem; margin: 0 0 .4rem; }
.tf-step p { margin: 0; color: var(--tf-muted); font-size: .92rem; line-height: 1.5; }

/* —— Boat cards —— */
.tf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}
.tf-grid-4 { grid-template-columns: repeat(4, 1fr); }
.tf-boat-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--tf-line);
    transition: transform .2s ease, box-shadow .2s ease;
}
.tf-boat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--tf-shadow);
}
.tf-boat-media {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #7dd3fc, #0e7490);
    overflow: hidden;
}
.tf-boat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tf-boat-badges {
    position: absolute;
    left: .75rem;
    top: .75rem;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}
.tf-pill {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    background: rgba(255,255,255,.92);
    color: var(--tf-ink);
    font-size: .72rem;
    font-weight: 600;
    padding: .28rem .55rem;
    border-radius: 999px;
}
.tf-boat-body { padding: 1rem 1.05rem 1.15rem; }
.tf-boat-body h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 .45rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tf-boat-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .75rem;
    color: var(--tf-muted);
    font-size: .85rem;
    margin-bottom: .7rem;
}
.tf-boat-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
}
.tf-price { font-weight: 700; color: var(--tf-sea); }
.tf-price small { font-weight: 500; color: var(--tf-muted); }
.tf-rating { font-size: .85rem; color: var(--tf-muted); }
.tf-rating i { color: #f59e0b; }

/* —— CTA banner —— */
.tf-cta {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 3.5rem 2.5rem;
    color: #fff;
    background:
        linear-gradient(100deg, rgba(8,47,73,.85), rgba(14,116,144,.55)),
        url('https://images.unsplash.com/photo-1605281317010-fe5ffe798166?auto=format&fit=crop&w=1600&q=85') center/cover;
}
.tf-cta h2 {
    font-family: var(--tf-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0 0 .75rem;
    max-width: 14ch;
}
.tf-cta p { max-width: 32rem; margin: 0 0 1.4rem; opacity: .92; }

/* —— Owner landing —— */
.tf-owner-landing-hero {
    padding: 4rem 0 3.25rem;
    background:
        linear-gradient(165deg, rgba(12, 74, 110, .94), rgba(14, 116, 144, .88)),
        url('https://images.unsplash.com/photo-1540946485063-a40da27545f8?auto=format&fit=crop&w=1600&q=85') center/cover;
    color: #fff;
}
.tf-owner-landing-hero .tf-eyebrow {
    color: #fff;
    opacity: .9;
}
.tf-owner-landing-hero h1 {
    color: #fff;
    max-width: 16ch;
}
.tf-owner-landing-hero .tf-owner-landing-lead {
    color: rgba(255,255,255,.94);
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}
.tf-owner-landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
}
.tf-owner-landing-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    font-size: .9rem;
    font-weight: 600;
}
.tf-owner-landing-intro {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 2.5rem;
    align-items: center;
}
.tf-owner-landing-intro h2 {
    font-family: var(--tf-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0 0 1rem;
}
.tf-owner-landing-intro p {
    color: var(--tf-muted);
    line-height: 1.7;
    margin: 0 0 1rem;
}
.tf-owner-landing-intro-aside {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--tf-shadow);
}
.tf-owner-landing-intro-aside img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}
.tf-owner-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.tf-owner-benefit {
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: 16px;
    padding: 1.4rem;
}
.tf-owner-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(14, 116, 144, .12);
    color: var(--tf-sea);
    font-size: 1.25rem;
    margin-bottom: .9rem;
}
.tf-owner-benefit h3 {
    font-size: 1.05rem;
    margin: 0 0 .45rem;
}
.tf-owner-benefit p {
    margin: 0;
    color: var(--tf-muted);
    font-size: .92rem;
    line-height: 1.55;
}
.tf-owner-pricing {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 2rem;
    align-items: center;
}
.tf-owner-pricing-copy h2 {
    font-family: var(--tf-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0 0 1rem;
}
.tf-owner-pricing-copy > p {
    color: var(--tf-muted);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    max-width: 40rem;
}
.tf-owner-pricing-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tf-owner-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .7rem;
    line-height: 1.45;
}
.tf-owner-pricing-list .bi {
    color: var(--tf-sea);
    font-size: 1.15rem;
    margin-top: .1rem;
}
.tf-owner-pricing-card {
    background: linear-gradient(160deg, #0c4a6e, #0e7490);
    color: #fff;
    border-radius: 24px;
    padding: 2rem 1.75rem;
    box-shadow: var(--tf-shadow);
    text-align: center;
}
.tf-owner-pricing-card-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    font-weight: 700;
    opacity: .85;
    margin-bottom: .5rem;
}
.tf-owner-pricing-card-price {
    display: block;
    font-family: var(--tf-display);
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
}
.tf-owner-pricing-card-sub {
    display: block;
    margin-top: .35rem;
    opacity: .9;
    font-weight: 600;
}
.tf-owner-pricing-card hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,.25);
    margin: 1.25rem 0;
}
.tf-owner-pricing-card p {
    margin: 0 0 .65rem;
    line-height: 1.5;
    opacity: .95;
}
.tf-owner-pricing-note {
    font-size: .88rem !important;
    opacity: .8 !important;
}

/* —— Subscribe —— */
.tf-subscribe {
    background: #0b3b4f;
    color: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    align-items: center;
}
.tf-subscribe h2 {
    font-family: var(--tf-display);
    font-size: 1.9rem;
    margin: 0 0 .5rem;
}
.tf-subscribe p { margin: 0; opacity: .85; }
.tf-subscribe-form {
    display: flex;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    padding: .4rem;
    border-radius: 999px;
}
.tf-subscribe-form input {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    outline: none;
    padding: .65rem 1rem;
}
.tf-subscribe-form input::placeholder { color: rgba(255,255,255,.65); }

/* —— Footer —— */
.tf-footer {
    position: relative;
    margin-top: 3rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, .08), transparent 40%),
        linear-gradient(180deg, #0a3350 0%, #07293a 100%);
    color: rgba(255,255,255,.78);
    padding: 3.5rem 0 1.5rem;
}
.tf-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.tf-footer h4 {
    color: #fff;
    font-family: var(--tf-display);
    font-size: 1.05rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0 0 1.1rem;
}
.tf-footer a { color: rgba(255,255,255,.75); text-decoration: none; display: block; margin-bottom: .55rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .03em; }
.tf-footer a:hover { color: #fff; }
.tf-footer-brand-col p {
    margin: 1rem 0 0;
    max-width: 34ch;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
}
.tf-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #fff !important;
    font-family: var(--tf-display);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: .25rem !important;
}
.tf-footer-talk .tf-footer-contact-row {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.tf-footer-talk .tf-footer-contact-row span {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    background: rgba(125, 211, 252, .2);
    color: #7dd3fc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tf-footer-talk .tf-footer-contact-row p {
    margin: 0;
    color: rgba(255,255,255,.85);
    line-height: 1.45;
    font-size: .92rem;
}
.tf-footer-talk .tf-footer-contact-row a {
    display: inline;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,.85);
}
.tf-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: .88rem;
}
.tf-footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
.tf-footer-legal a {
    display: inline;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}
.tf-back-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: .45rem;
    background: #f4b942;
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 40;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.tf-back-top.is-visible { opacity: 1; pointer-events: auto; }
.tf-back-top:hover { background: #e0a62f; }

/* —— Explore —— */
.tf-explore-section { padding-top: 2.5rem; }
.tf-explore-head {
    align-items: flex-end;
    margin-bottom: 1.5rem;
}
.tf-explore-sort {
    display: flex;
    align-items: center;
    gap: .55rem;
}
.tf-explore-sort label {
    color: #64748b;
    font-size: .85rem;
    margin: 0;
    white-space: nowrap;
}
.tf-explore-sort select,
.tf-explore-bar select,
.tf-filter input,
.tf-filter select,
.tf-filter-group input,
.tf-filter-group select {
    border: 1px solid var(--tf-line);
    border-radius: 10px;
    padding: .55rem .8rem;
    font: inherit;
    background: #fff;
    width: 100%;
}
.tf-explore-sort select { width: auto; min-width: 11rem; }
.tf-explore-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--tf-line);
}
.tf-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.tf-explore-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
}
.tf-explore-filters {
    position: sticky;
    top: 5.5rem;
    max-height: calc(100vh - 6.25rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}
.tf-explore-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}
.tf-explore-results-bar .tf-sub { margin: 0; }
.tf-explore-pagination {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--tf-line);
}
.tf-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.tf-pager-meta {
    margin: 0;
    color: #64748b;
    font-size: .92rem;
}
.tf-pager-meta strong { color: #0f172a; font-weight: 700; }
.tf-pager-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.tf-pager-list a,
.tf-pager-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 .55rem;
    border-radius: 10px;
    border: 1px solid var(--tf-line);
    background: #fff;
    color: #334155;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
}
.tf-pager-list a:hover {
    border-color: #67e8f9;
    color: var(--tf-sea);
    background: #ecfeff;
}
.tf-pager-list .is-active span {
    background: var(--tf-sea);
    border-color: var(--tf-sea);
    color: #fff;
}
.tf-pager-list .is-disabled span {
    opacity: .4;
    cursor: not-allowed;
    background: #f8fafc;
}
.tf-pager-list .is-ellipsis span {
    border-color: transparent;
    background: transparent;
    min-width: 1.5rem;
    color: #94a3b8;
}
@media (max-width: 640px) {
    .tf-pager { justify-content: center; }
    .tf-pager-meta { width: 100%; text-align: center; }
    .tf-pager-list { width: 100%; justify-content: center; flex-wrap: wrap; }
}
.tf-filter-card {
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: 16px;
    padding: 1.15rem 1.1rem 1.25rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}
.tf-filter-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--tf-line);
}
.tf-filter-card-head h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}
.tf-filter-clear {
    font-size: .82rem;
    color: #0e7490;
    text-decoration: none;
    white-space: nowrap;
}
.tf-filter-clear:hover { text-decoration: underline; }
.tf-filter-group { margin-bottom: .95rem; }
.tf-filter-group label {
    display: block;
    margin-bottom: .35rem;
    font-size: .82rem;
    font-weight: 600;
    color: #334155;
}
.tf-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}
.tf-filter-submit { width: 100%; margin-top: .35rem; }
.tf-explore-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tf-filter-group .select2-container { width: 100% !important; }
.tf-filter-group .select2-container--default .select2-selection--multiple {
    border: 1px solid var(--tf-line);
    border-radius: 10px;
    min-height: 42px;
    padding: .2rem .35rem;
}
.tf-filter-group .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #0e7490;
}
.tf-filter-group .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #ecfeff;
    border-color: #a5f3fc;
    color: #155e75;
    border-radius: 8px;
}

/* —— Listing detail —— */
.tf-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: .6rem;
    margin-bottom: 2rem;
}
.tf-gallery-main,
.tf-gallery-side img,
.tf-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tf-gallery-main {
    border-radius: 18px;
    overflow: hidden;
    min-height: 420px;
    background: #dbeafe;
}
.tf-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: .6rem;
}
.tf-gallery-side > div {
    border-radius: 18px;
    overflow: hidden;
    min-height: 200px;
    background: #dbeafe;
    position: relative;
}
.tf-gallery-more {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(8, 30, 50, .45);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.tf-detail-layout {
    display: grid;
    grid-template-columns: 1.45fr .9fr;
    gap: 2.5rem;
    align-items: start;
}
.tf-detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    color: var(--tf-muted);
    margin: .75rem 0 1.25rem;
    font-size: .95rem;
}
.tf-detail-stats strong { color: var(--tf-ink); }
.tf-detail h1 {
    font-family: var(--tf-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0;
}

/* —— Share buttons —— */
.tf-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem 1rem;
    margin: 0 0 1.5rem;
    padding: .85rem 0;
    border-top: 1px solid #e8eef3;
    border-bottom: 1px solid #e8eef3;
}
.tf-share-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--tf-muted);
}
.tf-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}
.tf-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    border: 1px solid #dbe3ec;
    background: #fff;
    color: var(--tf-ink);
    text-decoration: none;
    font-size: 1.05rem;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
    cursor: pointer;
    padding: 0;
}
.tf-share-btn:hover {
    transform: translateY(-1px);
    border-color: #b8c7d6;
    color: var(--tf-ink);
}
.tf-share-btn.is-copied {
    border-color: #16a34a;
    color: #16a34a;
    background: #f0fdf4;
}
.tf-share-facebook:hover { color: #1877f2; border-color: #1877f2; }
.tf-share-x:hover { color: #111; border-color: #111; }
.tf-share-linkedin:hover { color: #0a66c2; border-color: #0a66c2; }
.tf-share-whatsapp:hover { color: #25d366; border-color: #25d366; }
.tf-share-pinterest:hover { color: #e60023; border-color: #e60023; }
.tf-share-telegram:hover { color: #229ed9; border-color: #229ed9; }
.tf-share-email:hover { color: var(--tf-sea); border-color: var(--tf-sea); }
.tf-share-copy:hover { color: var(--tf-sea); border-color: var(--tf-sea); }

.tf-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.25rem;
}
.tf-footer-social a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 0;
    background: #7dd3fc;
    color: #0a3350 !important;
    margin: 0 !important;
    text-transform: none !important;
    text-decoration: none;
    font-size: 1rem;
}
.tf-footer-social a:hover {
    background: #fff;
    color: #0a3350 !important;
}
.tf-detail h2 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}
.tf-boat-map {
    width: 100%;
    height: 280px;
    background: #e8f4f8;
}
.tf-boat-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.tf-prose { color: #374151; line-height: 1.7; }
.tf-prose h2 { font-size: 1.25rem; font-weight: 700; color: #111; margin: 1.75rem 0 .75rem; }
.tf-prose p { margin: 0 0 1rem; }
.tf-prose ul, .tf-prose ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.tf-prose li { margin-bottom: .4rem; }
.tf-prose a { color: var(--tf-sea); font-weight: 500; }
.tf-equip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}
.tf-equip-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem .9rem;
    border: 1px solid var(--tf-line);
    border-radius: 12px;
    font-size: .92rem;
}
.tf-equip-item i { color: var(--tf-sea); }
.tf-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem 1.5rem;
}
.tf-specs dt { color: var(--tf-muted); font-size: .85rem; margin: 0; }
.tf-specs dd { margin: 0 0 .6rem; font-weight: 600; }
.tf-owner-box {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid var(--tf-line);
    border-radius: 16px;
}
.tf-owner-box img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}
.tf-book {
    position: sticky;
    top: 5.5rem;
    border: 1px solid var(--tf-line);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: var(--tf-shadow);
    background: #fff;
    overflow: visible;
}
.tf-time-panel {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: .65rem;
    max-height: 220px;
    overflow: auto;
    background: #fff;
}
.tf-guests-ctrl button:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.tf-book-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    gap: .75rem;
}
.tf-book-price .amount {
    font-size: 1.45rem;
    font-weight: 700;
}
.tf-book .form-label { font-weight: 600; font-size: .88rem; }
.tf-quote-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: .35rem;
    font-size: .95rem;
    gap: .75rem;
}
.tf-book-field {
    position: relative;
    margin-bottom: .75rem;
}
.tf-book-field > label {
    display: block;
    font-size: .75rem;
    color: var(--tf-muted);
    margin-bottom: .25rem;
}
.tf-book-field-ctrl {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: .7rem .9rem;
    background: #fff;
    font: inherit;
    color: var(--tf-ink);
    text-align: left;
}
.tf-book-field-ctrl input[type="date"] {
    border: 0;
    outline: 0;
    width: 100%;
    font: inherit;
    background: transparent;
    color: var(--tf-ink);
}
.tf-book-field-ctrl i { color: var(--tf-muted); }
.tf-book-select-btn { cursor: pointer; }
.tf-book-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .35rem);
    z-index: 20;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15, 40, 60, .12);
    padding: .75rem;
    max-height: 260px;
    overflow: auto;
}
.tf-duration-grid,
.tf-time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}
.tf-duration-opt,
.tf-time-opt {
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    padding: .55rem .4rem;
    font-size: .88rem;
    cursor: pointer;
}
.tf-duration-opt.active,
.tf-time-opt.active {
    background: #e0f2fe;
    border-color: #0284c7;
    color: #0c4a6e;
}
.tf-duration-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
}
.tf-duration-opt small { color: var(--tf-muted); font-size: .78rem; }
.tf-duration-opt.active small { color: #0369a1; }
.tf-duration-grid-1 { grid-template-columns: 1fr; }
.tf-captain-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: .7rem .9rem;
    background: #f9fafb;
}
.tf-captain-info strong { font-weight: 600; }
.tf-guests {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: .65rem .9rem;
}
.tf-guests-ctrl {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
}
.tf-guests-ctrl button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer;
    line-height: 1;
}
.tf-quote-fee {
    background: #f3f4f6;
    margin: .5rem -0.35rem;
    padding: .45rem .35rem;
    border-radius: 6px;
}
.tf-pay-summary {
    border: 1px solid #7dd3fc;
    background: #f0f9ff;
    border-radius: 10px;
    padding: .85rem 1rem;
}
.tf-addon-teaser li {
    color: #9ca3af;
    margin-bottom: .35rem;
}
.tf-addon-teaser span { margin-left: .35rem; }
.tf-addon-step { display: grid; gap: .65rem; }
.tf-addon-block {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: .75rem;
}
.tf-addon-opt {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    margin: .35rem 0;
    cursor: pointer;
    font-size: .92rem;
}
.tf-reviews-summary {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.tf-score-big {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
.tf-bar {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    gap: .5rem;
    align-items: center;
    font-size: .85rem;
    margin-bottom: .35rem;
}
.tf-bar-track {
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}
.tf-bar-fill { height: 100%; background: var(--tf-sea); }
.tf-review {
    border-top: 1px solid var(--tf-line);
    padding: 1.15rem 0;
}
.tf-review-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .4rem;
}

/* —— Owner profile —— */
.tf-owner-hero {
    background: var(--tf-bg);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--tf-line);
}
.tf-owner-head {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.tf-owner-head img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: var(--tf-shadow);
}
.tf-owner-head h1 {
    font-family: var(--tf-display);
    font-size: 2rem;
    margin: 0 0 .35rem;
}
.tf-owner-tabs {
    display: flex;
    gap: 1.25rem;
    margin: 1.75rem 0 0;
    border-bottom: 1px solid var(--tf-line);
}
.tf-owner-tabs a {
    text-decoration: none;
    padding: .75rem 0;
    color: var(--tf-muted);
    font-weight: 600;
    border-bottom: 2px solid transparent;
}
.tf-owner-tabs a.active {
    color: var(--tf-sea);
    border-bottom-color: var(--tf-sea);
}

.tf-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--tf-muted);
}

.alert { border-radius: 12px; }

/* —— Auth pages (TripFinder-style) —— */
.tf-auth-page {
    min-height: calc(100vh - 72px);
    background: #fff;
}
.tf-auth-split {
    display: grid;
    grid-template-columns: minmax(320px, 520px) 1fr;
    min-height: calc(100vh - 72px);
}
.tf-auth-form-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
}
.tf-auth-form-inner {
    width: 100%;
    max-width: 420px;
}
.tf-auth-title {
    font-family: var(--tf-display);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 600;
    margin: 0 0 .5rem;
    color: var(--tf-ink);
}
.tf-auth-lead {
    color: var(--tf-muted);
    margin: 0 0 1.75rem;
    font-size: 1rem;
}
.tf-auth-form .tf-field {
    margin-bottom: 1rem;
}
.tf-auth-form .tf-field label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .35rem;
}
.tf-auth-form .tf-field input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: .85rem 1rem;
    font: inherit;
    color: var(--tf-ink);
    background: #fff;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.tf-auth-form .tf-field input:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .08);
}
.tf-auth-form .tf-field input::placeholder { color: #9ca3af; }
.tf-auth-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
}
.tf-check {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .9rem;
    color: #374151;
    margin: 1rem 0;
    cursor: pointer;
}
.tf-check input {
    margin-top: .2rem;
    width: 1rem;
    height: 1rem;
    accent-color: #111;
    flex-shrink: 0;
}
.tf-check a { color: #111; font-weight: 600; text-decoration: underline; }
.tf-check-muted {
    font-size: .78rem;
    color: var(--tf-muted);
    margin-top: -.35rem;
}
.tf-auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: .25rem 0 1.25rem;
}
.tf-auth-row .tf-check { margin: 0; }
.tf-auth-forgot {
    color: var(--tf-muted);
    font-size: .9rem;
    text-decoration: none;
    white-space: nowrap;
}
.tf-auth-forgot:hover { color: #111; text-decoration: underline; }
.tf-auth-submit {
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: #111;
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: .95rem 1.25rem;
    cursor: pointer;
    margin-top: .35rem;
    transition: background .15s ease;
    -webkit-appearance: none;
    appearance: none;
}
.tf-auth-submit:hover,
.tf-auth-submit:focus {
    background: #000;
    color: #fff !important;
}
.tf-auth-switch {
    text-align: center;
    margin: 1.25rem 0 0;
    color: var(--tf-muted);
    font-size: .95rem;
}
.tf-auth-switch a {
    color: #111;
    font-weight: 700;
    text-decoration: none;
}
.tf-auth-switch a:hover { text-decoration: underline; }
.tf-auth-or {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin: 1.5rem 0 1rem;
    color: var(--tf-muted);
    font-size: .9rem;
}
.tf-auth-or::before,
.tf-auth-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}
.tf-social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}
.tf-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: .8rem .75rem;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: .9rem;
    background: #fff;
    transition: background .15s ease, border-color .15s ease;
}
.tf-social-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111;
}
.tf-social-btn .bi-facebook { color: #1877f2; }
.tf-social-btn .bi-google { color: #ea4335; }
.tf-auth-visual {
    position: relative;
    background: #0c4a6e center/cover no-repeat;
    min-height: 100%;
}
.tf-auth-visual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(8,30,50,.15) 0%, rgba(8,30,50,.72) 100%);
}
.tf-auth-visual-eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
    font-weight: 600;
    opacity: .85;
    margin: 0 0 .75rem;
}
.tf-auth-visual h2 {
    font-family: var(--tf-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    margin: 0 0 .75rem;
    max-width: 12ch;
    line-height: 1.1;
}
.tf-auth-visual p {
    margin: 0;
    max-width: 28rem;
    opacity: .92;
    font-size: 1.05rem;
    line-height: 1.55;
}
body:has(.tf-auth-page) .tf-footer { margin-top: 0; }

@media (max-width: 991px) {
    .tf-auth-split { grid-template-columns: 1fr; }
    .tf-auth-visual { min-height: 280px; order: -1; }
    .tf-auth-visual-overlay { padding: 1.75rem; }
    .tf-auth-form-col { padding: 2rem 1.25rem 3rem; }
}

@media (max-width: 520px) {
    .tf-auth-grid-2,
    .tf-social-row { grid-template-columns: 1fr; }
    .tf-auth-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 991px) {
    .tf-menu-toggle { display: inline-flex; }
    .tf-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.25rem;
        border-bottom: 1px solid var(--tf-line);
        gap: .75rem;
    }
    .tf-nav-links.open { display: flex; }
    .tf-search { grid-template-columns: 1fr 1fr; }
    .tf-search .tf-btn { grid-column: 1 / -1; }
    .tf-dest-grid,
    .tf-steps,
    .tf-grid,
    .tf-grid-4,
    .tf-owner-benefits { grid-template-columns: 1fr 1fr; }
    .tf-explore-layout { grid-template-columns: 1fr; }
    .tf-explore-filters { position: static; }
    .tf-explore-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tf-subscribe,
    .tf-detail-layout,
    .tf-gallery,
    .tf-footer-grid,
    .tf-reviews-summary,
    .tf-owner-landing-intro,
    .tf-owner-pricing { grid-template-columns: 1fr; }
    .tf-gallery-main { min-height: 260px; }
    .tf-gallery-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .tf-equip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .tf-dest-grid,
    .tf-steps,
    .tf-grid,
    .tf-grid-4,
    .tf-explore-grid,
    .tf-equip,
    .tf-specs,
    .tf-search,
    .tf-owner-benefits { grid-template-columns: 1fr; }
    .tf-explore-head { flex-direction: column; align-items: stretch; }
    .tf-explore-sort { justify-content: space-between; }
    .tf-owner-head { flex-direction: column; text-align: center; }
    .tf-footer-bottom { flex-direction: column; text-align: center; }
    .tf-features-grid,
    .tf-stats-grid,
    .tf-about-split,
    .tf-contact-grid { grid-template-columns: 1fr; }
    .tf-stats-grid .tf-stat-tile:nth-child(odd) { transform: none; }
}

/* —— Page hero —— */
.tf-page-hero {
    padding: 3.5rem 0 1.5rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
}
.tf-page-hero h1 {
    font-family: var(--tf-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: .35rem 0 .75rem;
    color: var(--tf-ink);
}
.tf-page-hero p { color: var(--tf-muted); max-width: 52ch; margin: 0; }
.tf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--tf-sea);
    font-weight: 600;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0;
}

/* —— Features —— */
.tf-features {
    padding: 4rem 0 3.5rem;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.tf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.tf-feature { text-align: center; padding: .5rem 1rem; }
.tf-feature-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    color: #4fb6d5;
    font-size: 2.75rem;
    display: grid;
    place-items: center;
}
.tf-feature h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 .65rem;
    color: #2d3748;
}
.tf-feature-wave {
    display: block;
    width: 48px;
    height: 8px;
    margin: 0 auto .9rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='8' viewBox='0 0 48 8'%3E%3Cpath d='M0 4 Q6 0 12 4 T24 4 T36 4 T48 4' fill='none' stroke='%23cbd5e1' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}
.tf-feature p { color: var(--tf-muted); margin: 0; line-height: 1.7; }

/* —— Stats —— */
.tf-stats {
    padding: 3.5rem 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(14,116,144,.05), transparent 35%),
        #f3f5f7;
}
.tf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.tf-stat-tile {
    border-radius: 1rem;
    padding: 1.75rem 1.25rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .12);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}
.tf-stats-grid .tf-stat-tile:nth-child(odd) { transform: translateY(-10px); }
.tf-stat-tile i { font-size: 1.75rem; opacity: .95; }
.tf-stat-tile strong { font-size: 2.4rem; line-height: 1; font-weight: 700; }
.tf-stat-tile span { font-size: .92rem; opacity: .92; max-width: 14ch; line-height: 1.35; }
.tf-stat-purple { background: linear-gradient(145deg, #8b5cf6, #6d28d9); }
.tf-stat-gold { background: linear-gradient(145deg, #d6a15c, #b7791f); }
.tf-stat-teal { background: linear-gradient(145deg, #22d3ee, #0e7490); }
.tf-stat-coral { background: linear-gradient(145deg, #fb7185, #e11d48); }

/* —— About split —— */
.tf-about-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 2.5rem;
    align-items: center;
}
.tf-about-copy h2 {
    font-family: var(--tf-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0 0 1rem;
    line-height: 1.2;
}
.tf-about-copy > p { color: var(--tf-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.tf-about-list { list-style: none; padding: 0; margin: 0; }
.tf-about-list li {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .45rem 0;
    font-weight: 500;
    color: #334155;
}
.tf-about-list i { color: #94a3b8; font-size: .85rem; }
.tf-about-visual { position: relative; }
.tf-about-blob {
    border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 40, 60, .12);
    aspect-ratio: 1 / 1.05;
    background: #e0f2fe;
}
.tf-about-blob img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* —— Testimonials —— */
.tf-testimonials {
    padding: 4.5rem 0;
    background:
        linear-gradient(rgba(8, 35, 52, .72), rgba(8, 35, 52, .72)),
        url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?auto=format&fit=crop&w=1600&q=70') center/cover;
}
.tf-testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
    position: relative;
}
.tf-testimonial-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin: -4.2rem auto 1rem;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.tf-testimonial-quote-mark {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    line-height: 1;
    color: rgba(15, 23, 42, .06);
    font-family: Georgia, serif;
    pointer-events: none;
}
.tf-testimonial-text {
    position: relative;
    z-index: 1;
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
}
.tf-testimonial-name {
    display: block;
    font-size: 1.15rem;
    color: #111;
    margin-bottom: .2rem;
}
.tf-testimonial-role {
    display: block;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9ca3af;
    font-weight: 600;
}

/* —— Awards —— */
.tf-awards { padding: 2.5rem 0; background: #fff; border-top: 1px solid var(--tf-line); border-bottom: 1px solid var(--tf-line); }
.tf-awards-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: center;
}
.tf-award-badge {
    border: 2px solid #e5e7eb;
    border-radius: 999px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .75rem;
    color: #334155;
}
.tf-award-badge span { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: #94a3b8; }
.tf-award-badge strong { font-size: .85rem; line-height: 1.2; margin: .2rem 0; }
.tf-award-badge small { font-size: .68rem; color: #64748b; }

/* —— Instagram marquee —— */
.tf-instagram { padding: 3.5rem 0 2rem; overflow: hidden; }
.tf-instagram-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.tf-instagram-head h2 { margin: .35rem 0 .35rem; font-family: var(--tf-display); }
.tf-instagram-head p { margin: 0; color: var(--tf-muted); }
.tf-instagram-marquee { overflow: hidden; width: 100%; }
.tf-instagram-track {
    display: flex;
    gap: .85rem;
    width: max-content;
    animation: tfInstaScroll 40s linear infinite;
}
.tf-instagram-track:hover { animation-play-state: paused; }
.tf-instagram-card {
    display: block;
    width: 220px;
    height: 220px;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}
.tf-instagram-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.tf-instagram-card:hover img { transform: scale(1.06); }
@keyframes tfInstaScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* —— FAQ / Contact —— */
.tf-faq-item {
    border: 1px solid var(--tf-line) !important;
    border-radius: .85rem !important;
    overflow: hidden;
    margin-bottom: .75rem;
    background: #fff;
}
.tf-faq-item .accordion-button {
    font-weight: 600;
    box-shadow: none !important;
    background: #fff;
    color: var(--tf-ink);
}
.tf-faq-item .accordion-button:not(.collapsed) {
    background: #f0f9ff;
    color: var(--tf-sea-dark);
}
.tf-faq-item .accordion-body { color: var(--tf-muted); line-height: 1.7; }
.tf-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 1.5rem;
    align-items: start;
}
.tf-contact-card,
.tf-contact-info {
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--tf-shadow);
}
.tf-contact-card h2,
.tf-contact-info h2 {
    font-size: 1.35rem;
    margin: 0 0 1.25rem;
}
.tf-contact-row {
    display: flex;
    gap: .85rem;
    margin-bottom: 1.15rem;
}
.tf-contact-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: #e0f2fe;
    color: var(--tf-sea);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tf-contact-row strong { display: block; margin-bottom: .15rem; }
.tf-contact-row p { margin: 0; color: var(--tf-muted); }
.tf-contact-row a { color: var(--tf-sea); text-decoration: none; }
.tf-contact-map {
    margin-top: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--tf-line);
    min-height: 240px;
}
.tf-contact-map iframe { width: 100%; height: 260px; border: 0; display: block; }

@media (max-width: 991px) {
    .tf-features-grid { grid-template-columns: 1fr; }
    .tf-stats-grid { grid-template-columns: 1fr 1fr; }
    .tf-about-split,
    .tf-contact-grid { grid-template-columns: 1fr; }
    .tf-awards-row { grid-template-columns: repeat(3, 1fr); }
    .tf-stats-grid .tf-stat-tile:nth-child(odd) { transform: none; }
}

@media (max-width: 640px) {
    .tf-awards-row { grid-template-columns: repeat(2, 1fr); }
    .tf-instagram-card { width: 170px; height: 170px; }
}
