:root {
    --color-ink: #151515;
    --color-ink-soft: #4d4a45;
    --color-sand: #f5ede2;
    --color-sand-deep: #eadccb;
    --color-paper: #fffaf3;
    --color-white: #ffffff;
    --color-accent: #fd4621;
    --color-accent-dark: #d63b1b;
    --color-forest: #2e4738;
    --color-border: rgba(21, 21, 21, 0.12);
    --color-shadow: 0 24px 60px rgba(20, 16, 10, 0.12);
    --font-body: "DM Sans", sans-serif;
    --font-display: "Marcellus", serif;
    --container-width: min(1240px, calc(100vw - 32px));
    --radius-large: 32px;
    --radius-medium: 22px;
    --radius-small: 16px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-paper);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 44px;
    height: 1px;
    background: currentColor;
    opacity: 0.45;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 42px;
}

.section-heading h2,
.choose-intro h2,
.guide-copy h2,
.banner-card h2 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.section-heading p,
.choose-intro p,
.guide-copy p,
.banner-card p,
.community-copy p {
    margin: 0;
    color: var(--color-ink-soft);
    font-size: 1.03rem;
}

.section-heading-light {
    color: var(--color-white);
}

.section-heading-light p {
    color: rgba(255, 255, 255, 0.74);
}

.section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading-centered .section-kicker {
    justify-content: center;
}

.section-heading-inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.cta-button,
.ghost-button,
.text-link {
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(253, 70, 33, 0.25);
}

.cta-button:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

.cta-button-small {
    min-height: 46px;
    padding-inline: 22px;
    font-size: 0.95rem;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: var(--color-white);
    backdrop-filter: blur(12px);
}

.ghost-button:hover,
.ghost-button-light:hover {
    transform: translateY(-2px);
}

.ghost-button-light {
    border-color: rgba(255, 255, 255, 0.55);
}

.text-link {
    font-weight: 700;
}

.text-link:hover {
    color: var(--color-accent);
}

.text-link-dark {
    color: var(--color-ink);
}

.topbar,
.site-header,
.hero-section,
.choose-section,
.services-section,
.testimonial-section,
.stats-section,
.guide-section,
.destination-section,
.community-section,
.banner-section,
.site-footer,
.toast {
    /* section rules appended below */
}

.topbar {
    position: relative;
    z-index: 20;
    background: #111111;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 48px;
}

.topbar-contact {
    justify-self: start;
    opacity: 0.86;
}

.topbar-message {
    margin: 0;
    text-align: center;
}

.topbar-links {
    display: flex;
    justify-content: end;
    gap: 20px;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 18px 0;
    transition: padding var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 24px;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled .header-inner {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 30px rgba(20, 16, 10, 0.08);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #ff8759);
    color: var(--color-white);
    font-weight: 700;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 32px);
    font-weight: 700;
}

.desktop-nav a {
    position: relative;
    color: rgba(21, 21, 21, 0.8);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-border);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--color-ink);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
    display: none;
}

.hero-section {
    position: relative;
    margin-top: -120px;
    padding: 224px 0 72px;
    background: url("https://images.pexels.com/photos/3155666/pexels-photo-3155666.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop") center/cover no-repeat;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 14, 12, 0.82) 0%, rgba(16, 14, 12, 0.56) 45%, rgba(16, 14, 12, 0.18) 100%),
        radial-gradient(circle at 80% 20%, rgba(253, 70, 33, 0.28), transparent 22%),
        radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.1), transparent 26%);
}

.hero-grid,
.planner-shell,
.choose-grid,
.service-grid,
.testimonial-wrapper,
.stats-grid,
.guide-grid,
.community-grid,
.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
}

.hero-title {
    max-width: 10ch;
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.hero-description {
    max-width: 58ch;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.hero-meta-card {
    min-width: 150px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.hero-meta-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.65rem;
    font-weight: 700;
}

.hero-meta-card span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-image {
    position: absolute;
    overflow: hidden;
    box-shadow: var(--color-shadow);
}

.hero-image img {
    height: 100%;
    object-fit: cover;
}

.hero-image-main {
    top: 20px;
    right: 12px;
    width: min(100%, 430px);
    height: 520px;
    border-radius: 220px 220px 26px 26px;
}

.hero-image-secondary {
    left: 0;
    bottom: 24px;
    width: 230px;
    height: 280px;
    border: 8px solid rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    animation: drift 6s ease-in-out infinite;
}

.hero-floating-card {
    position: absolute;
    right: 0;
    bottom: 6px;
    width: min(100%, 310px);
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 250, 243, 0.92);
    color: var(--color-ink);
    box-shadow: var(--color-shadow);
}

.floating-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.floating-label::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
}

.hero-floating-card h2 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1.08;
}

.floating-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.floating-list li {
    padding: 10px 12px;
    border-radius: 14px;
    background: var(--color-sand);
    font-weight: 700;
    text-align: center;
}

.planner-shell {
    margin-top: 36px;
}

.planner-card {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: end;
    padding: 26px;
    border-radius: var(--radius-large);
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--color-shadow);
}

.planner-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-ink-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.planner-field input,
.planner-field select {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(21, 21, 21, 0.12);
    border-radius: 18px;
    background: var(--color-white);
    color: var(--color-ink);
}

.planner-field input:focus,
.planner-field select:focus,
.community-form input:focus {
    outline: 2px solid rgba(253, 70, 33, 0.2);
    border-color: rgba(253, 70, 33, 0.4);
}

.choose-section {
    padding: 88px 0 72px;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.choose-intro,
.choose-card {
    padding: 34px 28px;
    border-radius: var(--radius-large);
    background: var(--color-white);
    box-shadow: 0 16px 40px rgba(20, 16, 10, 0.06);
}

.choose-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 22px;
}

.choose-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.choose-card p {
    margin: 0;
    color: var(--color-ink-soft);
}

.services-section {
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(180deg, rgba(16, 14, 12, 0.9), rgba(16, 14, 12, 0.92)),
        url("https://images.pexels.com/photos/2166553/pexels-photo-2166553.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop") center/cover no-repeat;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.tour-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 250, 243, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.tour-card-image {
    aspect-ratio: 1.05 / 0.92;
}

.tour-card-image img {
    height: 100%;
    object-fit: cover;
}

.tour-card-content {
    padding: 26px 24px 28px;
}

.tour-card-tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--color-sand);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tour-card-content h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 1.72rem;
    line-height: 1.05;
}

.tour-card-content p {
    margin: 0 0 20px;
    color: var(--color-ink-soft);
}

.tour-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-accent);
    font-weight: 700;
}

.tour-card-content a::after {
    content: "->";
    transform: translateX(0);
    transition: transform var(--transition);
}

.tour-card-content a:hover::after {
    transform: translateX(4px);
}

.testimonial-section {
    padding: 104px 0 78px;
}

.testimonial-stage {
    position: relative;
    max-width: 760px;
    min-height: 360px;
    margin: 0 auto;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    padding: 44px;
    border-radius: 36px;
    background: linear-gradient(180deg, var(--color-white), #fff4e9);
    box-shadow: var(--color-shadow);
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease;
}

.testimonial-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    color: var(--color-accent);
    font-size: 1.15rem;
}

.testimonial-slide h3 {
    margin: 0 0 16px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
}

.testimonial-slide p {
    margin: 0 auto 28px;
    max-width: 36ch;
    text-align: center;
    color: var(--color-ink-soft);
    font-size: 1.08rem;
}

.testimonial-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-person img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person strong,
.testimonial-person span {
    display: block;
    text-align: left;
}

.testimonial-person span {
    color: var(--color-ink-soft);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(21, 21, 21, 0.18);
}

.testimonial-dot.is-active {
    width: 36px;
    border-radius: 999px;
    background: var(--color-accent);
}

.stats-section {
    padding: 0 0 92px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.stat-card {
    padding: 32px 22px;
    border-radius: 28px;
    background: var(--color-white);
    text-align: center;
    box-shadow: 0 14px 34px rgba(20, 16, 10, 0.06);
}

.stat-icon {
    width: 62px;
    height: 62px;
    object-fit: contain;
    margin: 0 auto 18px;
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 2rem;
}

.stat-card span {
    color: var(--color-ink-soft);
}

.guide-section {
    padding: 28px 0 110px;
}

.guide-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    align-items: center;
    gap: clamp(36px, 6vw, 88px);
}

.guide-lead {
    margin-bottom: 16px;
}

.guide-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
}

.specialist-grid {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.specialist-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 22px;
    background: var(--color-white);
}

.specialist-card img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
}

.specialist-card h3 {
    margin: 0 0 4px;
    font-size: 1.08rem;
}

.specialist-card p {
    margin: 0;
    color: var(--color-ink-soft);
}

.guide-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.guide-shape {
    position: absolute;
    top: 54px;
    left: 24px;
    width: 140px;
}

.guide-tent {
    position: absolute;
    top: 0;
    right: 30px;
    width: 160px;
    height: 160px;
    overflow: hidden;
    border-radius: 50%;
}

.guide-tent-base {
    width: 72px;
    margin: 0 auto;
}

.guide-tent-text {
    width: 100%;
    margin-top: -20px;
    animation: rotateText 14s linear infinite;
    will-change: transform;
    transform-origin: center center;
}

.guide-photo {
    position: absolute;
    overflow: hidden;
    box-shadow: var(--color-shadow);
}

.guide-photo img {
    height: 100%;
    object-fit: cover;
}

.guide-photo-primary {
    top: 80px;
    right: 0;
    width: 66%;
    height: 380px;
    border-radius: 220px 220px 30px 30px;
}

.guide-photo-secondary {
    left: 0;
    bottom: 36px;
    width: 46%;
    height: 270px;
    border: 8px solid rgba(255, 255, 255, 0.92);
    border-radius: 28px;
}

.guide-badge {
    position: absolute;
    right: 16px;
    bottom: 0;
    width: min(100%, 270px);
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.95);
    box-shadow: var(--color-shadow);
}

.guide-badge strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.guide-badge span {
    color: var(--color-ink-soft);
}

.destination-section {
    padding: 0 0 110px;
}

.carousel-controls {
    display: flex;
    gap: 12px;
}

.carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    box-shadow: 0 10px 24px rgba(20, 16, 10, 0.05);
}

.carousel-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.destination-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(265px, 320px);
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.destination-track::-webkit-scrollbar {
    display: none;
}

.destination-card {
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 28px;
    background: var(--color-white);
    box-shadow: 0 18px 40px rgba(20, 16, 10, 0.08);
}

.destination-card-image {
    aspect-ratio: 1 / 1.08;
}

.destination-card-image img {
    height: 100%;
    object-fit: cover;
}

.destination-card-content {
    padding: 24px 22px 28px;
}

.destination-country {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.destination-card-content h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 1.75rem;
}

.destination-card-content p {
    margin: 0 0 18px;
    color: var(--color-ink-soft);
}

.destination-card-content a {
    color: var(--color-accent);
    font-weight: 700;
}

.community-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, #f2ddc9, #f9f2e7);
    overflow: hidden;
}

.community-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: 32px;
    align-items: center;
}

.community-card {
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--color-shadow);
    backdrop-filter: blur(18px);
}

.community-card-icon {
    width: 72px;
    margin-bottom: 22px;
}

.community-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 700;
}

.community-form-row {
    display: flex;
    gap: 14px;
}

.community-form input {
    flex: 1;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(21, 21, 21, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
}

.community-note {
    margin: 14px 0 0;
    color: var(--color-ink-soft);
    font-size: 0.92rem;
}

.banner-section {
    padding: 96px 0 110px;
}

.banner-card {
    position: relative;
    overflow: hidden;
    padding: 84px 22px;
    border-radius: 38px;
    text-align: center;
    color: var(--color-white);
    background:
        linear-gradient(180deg, rgba(18, 15, 12, 0.82), rgba(18, 15, 12, 0.62)),
        url("https://images.pexels.com/photos/3155666/pexels-photo-3155666.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop") center/cover no-repeat;
    box-shadow: var(--color-shadow);
}

.banner-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(253, 70, 33, 0.15), transparent);
    pointer-events: none;
}

.banner-card > * {
    position: relative;
    z-index: 1;
}

.banner-card p {
    max-width: 42ch;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.78);
}

.hero-actions-centered {
    justify-content: center;
}

.site-footer {
    padding: 0 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 28px;
    padding: 42px 0 34px;
    border-top: 1px solid rgba(21, 21, 21, 0.08);
}

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

.footer-brand-link {
    margin-bottom: 8px;
}

.footer-brand p,
.footer-column a {
    color: var(--color-ink-soft);
}

.footer-column {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-column h3 {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.footer-column a:hover,
.footer-brand a:hover,
.footer-bottom a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(21, 21, 21, 0.08);
    color: var(--color-ink-soft);
}

.footer-bottom p {
    margin: 0;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    z-index: 80;
    transform: translate(-50%, 30px);
    min-width: min(90vw, 360px);
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(21, 21, 21, 0.92);
    color: var(--color-white);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@keyframes drift {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 18px;
    }

    .choose-grid,
    .service-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .choose-intro {
        grid-column: 1 / -1;
    }

    .hero-grid,
    .guide-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .guide-visual {
        max-width: 640px;
        width: 100%;
        margin: 0 auto;
    }

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

    .planner-card .cta-button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 920px) {
    .topbar-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 0;
        text-align: center;
    }

    .topbar-contact,
    .topbar-links {
        justify-self: center;
    }

    .desktop-nav,
    .header-actions .text-link,
    .header-actions .cta-button-small {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-panel {
        display: block;
        width: var(--container-width);
        margin: 10px auto 0;
        padding: 0 22px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 30px rgba(20, 16, 10, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 260ms ease, padding-block 260ms ease;
    }

    .mobile-panel.is-open {
        max-height: 320px;
        padding-top: 18px;
        padding-bottom: 22px;
    }

    .mobile-nav,
    .mobile-panel-actions {
        display: grid;
        gap: 12px;
    }

    .mobile-nav {
        margin-bottom: 18px;
        font-weight: 700;
    }

    .mobile-panel-actions .text-link {
        display: inline-flex;
    }

    .hero-section {
        margin-top: -120px;
        padding-top: 230px;
    }

    .hero-title {
        max-width: none;
    }

    .section-heading-inline {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .header-inner {
        padding: 14px 18px;
    }

    .hero-section,
    .services-section,
    .community-section,
    .banner-section {
        padding-inline: 0;
    }

    .hero-actions,
    .guide-actions,
    .community-form-row,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-meta,
    .choose-grid,
    .service-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-stage {
        min-height: 430px;
    }

    .testimonial-slide {
        padding: 32px 24px;
    }

    .planner-card {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-image-main {
        width: calc(100% - 26px);
        height: 420px;
    }

    .hero-image-secondary {
        width: 180px;
        height: 220px;
    }

    .hero-floating-card {
        position: relative;
        width: 100%;
        margin-top: 340px;
    }

    .guide-visual {
        min-height: 520px;
    }

    .guide-photo-primary {
        width: 76%;
        height: 300px;
    }

    .guide-photo-secondary {
        width: 48%;
        height: 220px;
    }

    .guide-badge {
        position: relative;
        margin-top: 360px;
        width: 100%;
        right: auto;
    }

    .destination-track {
        grid-auto-columns: minmax(260px, 86vw);
    }

    .community-card,
    .banner-card,
    .choose-intro,
    .choose-card,
    .tour-card,
    .destination-card,
    .stat-card {
        border-radius: 24px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100vw - 24px, 1240px);
    }

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

    .hero-section {
        padding-bottom: 56px;
    }

    .hero-title {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .hero-description,
    .section-heading p,
    .choose-intro p,
    .guide-copy p,
    .banner-card p,
    .community-copy p {
        font-size: 0.98rem;
    }

    .hero-meta-card,
    .planner-card,
    .community-card,
    .banner-card,
    .testimonial-slide {
        padding-inline: 20px;
    }

    .footer-bottom {
        text-align: center;
    }
}

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

}
