/* ===================================================
   PPADDL.com - Watercolor Naturalism + Scandinavian Clarity
   =================================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Full opacity colors */
    --indigo-wash: #2b4570;
    --burnt-sienna: #c45b28;
    --sap-green: #4a7c59;
    --raw-linen: #f5f0e8;
    --parchment: #ebe3d5;
    --morning-fog: #d4dce4;
    --river-slate: #3a3d4a;
    --golden-hour: #d4a24e;

    /* Alpha variants - Indigo Wash */
    --indigo-wash-10: rgba(43, 69, 112, 0.1);
    --indigo-wash-25: rgba(43, 69, 112, 0.25);
    --indigo-wash-40: rgba(43, 69, 112, 0.4);
    --indigo-wash-60: rgba(43, 69, 112, 0.6);
    --indigo-wash-80: rgba(43, 69, 112, 0.8);

    /* Alpha variants - Burnt Sienna */
    --burnt-sienna-10: rgba(196, 91, 40, 0.1);
    --burnt-sienna-25: rgba(196, 91, 40, 0.25);
    --burnt-sienna-40: rgba(196, 91, 40, 0.4);
    --burnt-sienna-60: rgba(196, 91, 40, 0.6);
    --burnt-sienna-80: rgba(196, 91, 40, 0.8);

    /* Alpha variants - Sap Green */
    --sap-green-10: rgba(74, 124, 89, 0.1);
    --sap-green-25: rgba(74, 124, 89, 0.25);
    --sap-green-40: rgba(74, 124, 89, 0.4);
    --sap-green-60: rgba(74, 124, 89, 0.6);
    --sap-green-80: rgba(74, 124, 89, 0.8);

    /* Alpha variants - Golden Hour */
    --golden-hour-10: rgba(212, 162, 78, 0.1);
    --golden-hour-25: rgba(212, 162, 78, 0.25);
    --golden-hour-40: rgba(212, 162, 78, 0.4);
    --golden-hour-60: rgba(212, 162, 78, 0.6);
    --golden-hour-80: rgba(212, 162, 78, 0.8);

    /* Alpha variants - River Slate */
    --river-slate-10: rgba(58, 61, 74, 0.1);
    --river-slate-25: rgba(58, 61, 74, 0.25);
    --river-slate-40: rgba(58, 61, 74, 0.4);
    --river-slate-60: rgba(58, 61, 74, 0.6);
    --river-slate-80: rgba(58, 61, 74, 0.8);

    /* Typography */
    --font-headline: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Lora', 'Georgia', serif;
    --font-accent: 'Nunito Sans', 'Helvetica Neue', sans-serif;

    /* Sizing */
    --headline-size: clamp(2.5rem, 6vw, 5rem);
    --body-size: 18px;
    --accent-size: 13px;

    /* Transitions */
    --ease-water: cubic-bezier(0.25, 0.1, 0.25, 1);
    --duration-slow: 800ms;
    --duration-mid: 600ms;
    --duration-fast: 400ms;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--body-size);
    font-weight: 400;
    line-height: 1.75;
    color: var(--river-slate);
    background-color: var(--raw-linen);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- SVG Defs (hidden) --- */
.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* --- Paper Texture Overlay --- */
.paper-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* --- Ripple Container --- */
.ripple-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.ripple-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--indigo-wash-25);
    transform: translate(-50%, -50%) scale(0);
    animation: rippleExpand 1.2s var(--ease-water) forwards;
}

.ripple-ring:nth-child(2) {
    animation-delay: 0.15s;
    border-color: var(--indigo-wash-10);
}

.ripple-ring:nth-child(3) {
    animation-delay: 0.3s;
    border-color: rgba(43, 69, 112, 0.08);
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* ===================================================
   INTRO / OPENING ANIMATION
   =================================================== */
.intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--raw-linen);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s var(--ease-water), visibility 1s;
}

.intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-bloom {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--indigo-wash-60) 0%, var(--indigo-wash-25) 40%, transparent 70%);
    transition: width 0.8s var(--ease-water), height 0.8s var(--ease-water);
    filter: url(#inkBloom);
}

.intro-bloom.active {
    width: 400px;
    height: 400px;
}

.intro-tendrils {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 1.5s var(--ease-water);
}

.intro-tendrils.active {
    opacity: 1;
}

.intro-tendrils svg {
    width: 100%;
    height: 100%;
}

.tendril {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

.tendril.animate {
    animation: drawTendril 2s var(--ease-water) forwards;
}

.tendril-2.animate { animation-delay: 0.2s; }
.tendril-3.animate { animation-delay: 0.4s; }
.tendril-4.animate { animation-delay: 0.6s; }

@keyframes drawTendril {
    to {
        stroke-dashoffset: 0;
    }
}

.intro-title {
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: 0.12em;
    color: var(--raw-linen);
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s var(--ease-water) 1.5s;
    mix-blend-mode: difference;
}

.intro-title.visible {
    opacity: 1;
}

.intro-subtitle {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: var(--accent-size);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--indigo-wash-40);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s var(--ease-water) 2.2s, transform 0.8s var(--ease-water) 2.2s;
}

.intro-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-skip {
    position: absolute;
    bottom: 40px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burnt-sienna-40);
    opacity: 0;
    transition: opacity 0.6s var(--ease-water) 3s;
    cursor: pointer;
    animation: gentlePulse 3s ease-in-out infinite;
    animation-delay: 3s;
}

.intro-skip.visible {
    opacity: 1;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ===================================================
   PANORAMA (horizontal scroll)
   =================================================== */
.panorama {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    background: var(--raw-linen);
    -webkit-overflow-scrolling: touch;
}

.panorama::-webkit-scrollbar {
    height: 4px;
}

.panorama::-webkit-scrollbar-track {
    background: var(--parchment);
}

.panorama::-webkit-scrollbar-thumb {
    background: var(--burnt-sienna-25);
    border-radius: 2px;
}

.panorama-track {
    display: flex;
    width: 400vw;
    height: 100vh;
    position: relative;
}

.panorama-time-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(212, 220, 228, 0.3) 0%,
        rgba(212, 220, 228, 0.15) 20%,
        rgba(245, 240, 232, 0.05) 40%,
        rgba(74, 124, 89, 0.05) 50%,
        rgba(212, 162, 78, 0.1) 70%,
        rgba(196, 91, 40, 0.12) 85%,
        rgba(196, 91, 40, 0.18) 100%
    );
}

/* Parallax layers */
.parallax-layer {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.parallax-mountains {
    top: 0;
    height: 60vh;
    z-index: 0;
}

.parallax-mountains svg {
    width: 100%;
    height: 100%;
}

.parallax-trees {
    top: 20vh;
    height: 50vh;
    z-index: 1;
}

.parallax-trees svg {
    width: 100%;
    height: 100%;
}

.parallax-water {
    bottom: 0;
    height: 30vh;
    z-index: 2;
}

.parallax-water svg {
    width: 100%;
    height: 100%;
}

/* Water animation */
.water-ripple {
    animation: waterShift 6s ease-in-out infinite alternate;
}

.water-ripple-2 {
    animation-delay: -2s;
    animation-duration: 8s;
}

.water-ripple-3 {
    animation-delay: -4s;
    animation-duration: 10s;
}

@keyframes waterShift {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

/* Content clearings */
.panorama-clearing {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    scroll-snap-align: center;
}

.clearing-inner {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: radial-gradient(circle, rgba(245, 240, 232, 0.95) 0%, rgba(245, 240, 232, 0.7) 60%, transparent 100%);
    opacity: 0;
    transform: scale(0.85);
    filter: blur(8px);
    transition: opacity var(--duration-mid) var(--ease-water),
                transform var(--duration-mid) var(--ease-water),
                filter var(--duration-mid) var(--ease-water);
}

.clearing-inner.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.clearing-1 { left: 15vw; }
.clearing-2 { left: 115vw; }
.clearing-3 { left: 215vw; }
.clearing-4 { left: 315vw; }

.clearing-title {
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 0.08em;
    color: var(--indigo-wash);
    margin-bottom: 12px;
    text-transform: lowercase;
}

.clearing-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--river-slate-60);
}

/* Scroll hint */
.panorama-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burnt-sienna-40);
    animation: gentlePulse 3s ease-in-out infinite;
    transition: opacity 0.6s var(--ease-water);
}

.panorama-scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.paddle-icon {
    animation: paddleBob 2s ease-in-out infinite;
}

@keyframes paddleBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(5deg); }
}

/* ===================================================
   SECTION SHARED STYLES
   =================================================== */
.section-title {
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: var(--headline-size);
    letter-spacing: 0.08em;
    color: var(--indigo-wash);
    text-transform: lowercase;
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: var(--accent-size);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burnt-sienna-40);
    text-align: center;
    margin-bottom: 60px;
}

.section-wash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Bloom animation for sections */
.bloom-in {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(8px);
    transition: opacity var(--duration-mid) var(--ease-water),
                transform var(--duration-mid) var(--ease-water),
                filter var(--duration-mid) var(--ease-water);
}

.bloom-in.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* ===================================================
   THE EDDY (radial orbit section)
   =================================================== */
.eddy {
    position: relative;
    padding: 120px 20px 140px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.eddy-wash {
    background:
        radial-gradient(ellipse at 20% 30%, var(--indigo-wash-10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, var(--sap-green-10) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--golden-hour-10) 0%, transparent 60%);
}

.eddy-orbit-container {
    position: relative;
    width: min(700px, 90vw);
    height: min(700px, 90vw);
    margin-top: 20px;
}

.eddy-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 2;
}

.eddy-center-svg {
    width: 100%;
    height: 100%;
}

/* Eddy cards positioned radially */
.eddy-card {
    position: absolute;
    width: 180px;
    padding: 24px 20px;
    text-align: center;
    background: rgba(245, 240, 232, 0.85);
    border-radius: 12px;
    z-index: 3;
    transition: transform var(--duration-fast) var(--ease-water),
                box-shadow var(--duration-fast) var(--ease-water);
}

.eddy-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 16px;
    background: var(--burnt-sienna-10);
    filter: blur(8px);
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease-water);
    z-index: -1;
}

.eddy-card:hover::before {
    opacity: 1;
}

.eddy-card:hover {
    transform: scale(1.05);
}

.eddy-card-wash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
}

.eddy-card-1 .eddy-card-wash {
    background: radial-gradient(ellipse at 30% 20%, var(--indigo-wash-10) 0%, transparent 70%);
}
.eddy-card-2 .eddy-card-wash {
    background: radial-gradient(ellipse at 70% 30%, var(--sap-green-10) 0%, transparent 70%);
}
.eddy-card-3 .eddy-card-wash {
    background: radial-gradient(ellipse at 40% 80%, var(--golden-hour-10) 0%, transparent 70%);
}
.eddy-card-4 .eddy-card-wash {
    background: radial-gradient(ellipse at 60% 20%, var(--burnt-sienna-10) 0%, transparent 70%);
}
.eddy-card-5 .eddy-card-wash {
    background: radial-gradient(ellipse at 30% 60%, var(--indigo-wash-10) 0%, transparent 70%);
}
.eddy-card-6 .eddy-card-wash {
    background: radial-gradient(ellipse at 70% 70%, var(--sap-green-10) 0%, transparent 70%);
}

/* Positioning eddy cards in a circle */
.eddy-card-1 { top: 0; left: 50%; transform: translateX(-50%); }
.eddy-card-2 { top: 15%; right: 0; }
.eddy-card-3 { top: 55%; right: 0; }
.eddy-card-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.eddy-card-5 { top: 55%; left: 0; }
.eddy-card-6 { top: 15%; left: 0; }

.eddy-card-1:hover { transform: translateX(-50%) scale(1.05); }
.eddy-card-4:hover { transform: translateX(-50%) scale(1.05); }

.eddy-card-title {
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--indigo-wash);
    text-transform: lowercase;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.eddy-card-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--river-slate-60);
    position: relative;
    z-index: 1;
}

/* ===================================================
   PADDLE DIVIDER
   =================================================== */
.paddle-divider {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    opacity: 0.6;
}

.paddle-divider svg {
    width: 200px;
    height: 40px;
}

/* ===================================================
   THE PORTAGE (timeline section)
   =================================================== */
.portage {
    position: relative;
    padding: 120px 20px 100px;
    min-height: 100vh;
    overflow: hidden;
}

.portage-wash {
    background:
        radial-gradient(ellipse at 10% 20%, var(--sap-green-10) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, var(--burnt-sienna-10) 0%, transparent 40%);
}

.portage-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.portage-path-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100%;
    z-index: 0;
}

.portage-trail {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 0.1s linear;
}

/* Waypoints */
.portage-waypoint {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-mid) var(--ease-water),
                transform var(--duration-mid) var(--ease-water);
}

.portage-waypoint.visible {
    opacity: 1;
    transform: translateY(0);
}

.waypoint-left {
    flex-direction: row;
    padding-right: 52%;
}

.waypoint-right {
    flex-direction: row-reverse;
    padding-left: 52%;
}

.waypoint-marker {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.waypoint-content {
    background: rgba(245, 240, 232, 0.8);
    padding: 24px 28px;
    border-radius: 8px;
    position: relative;
}

.waypoint-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 11px;
    background: var(--parchment);
    filter: blur(6px);
    opacity: 0.5;
    z-index: -1;
}

.waypoint-title {
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: var(--indigo-wash);
    text-transform: lowercase;
    margin-bottom: 8px;
}

.waypoint-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--river-slate-80);
}

/* ===================================================
   REED DIVIDER
   =================================================== */
.reed-divider {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    opacity: 0;
    transition: opacity 1s var(--ease-water);
}

.reed-divider.visible {
    opacity: 0.7;
}

.reed-divider svg {
    width: min(600px, 80vw);
    height: 120px;
}

/* ===================================================
   THE STILL WATER (philosophical section)
   =================================================== */
.still-water {
    position: relative;
    padding: 80px 20px;
    min-height: 100vh;
}

.still-water-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 60px 20px;
    overflow: hidden;
}

.sw-wash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s var(--ease-water);
}

.still-water-block.visible .sw-wash {
    opacity: 1;
}

.sw-wash-1 {
    background:
        radial-gradient(ellipse at -10% 50%, var(--indigo-wash-10) 0%, transparent 50%),
        radial-gradient(ellipse at 110% 50%, var(--indigo-wash-10) 0%, transparent 50%);
}

.sw-wash-2 {
    background:
        radial-gradient(ellipse at 110% 30%, var(--sap-green-10) 0%, transparent 50%),
        radial-gradient(ellipse at -10% 70%, var(--burnt-sienna-10) 0%, transparent 50%);
}

.sw-wash-3 {
    background:
        radial-gradient(ellipse at 50% -20%, var(--golden-hour-10) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 120%, var(--indigo-wash-10) 0%, transparent 50%);
}

.sw-wash-4 {
    background:
        radial-gradient(ellipse at -10% 50%, var(--burnt-sienna-10) 0%, transparent 50%),
        radial-gradient(ellipse at 110% 50%, var(--sap-green-10) 0%, transparent 50%);
}

.sw-text {
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: 0.06em;
    line-height: 1.5;
    color: var(--indigo-wash);
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.9);
    filter: blur(6px);
    transition: opacity 1s var(--ease-water),
                transform 1s var(--ease-water),
                filter 1s var(--ease-water);
}

.still-water-block.visible .sw-text {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Reflection effect */
.sw-text::after {
    content: attr(data-reflection);
    display: block;
    margin-top: 20px;
    transform: scaleY(-1);
    opacity: 0.08;
    filter: blur(3px);
    max-height: 60px;
    overflow: hidden;
    pointer-events: none;
}

/* ===================================================
   THE LANDING (footer)
   =================================================== */
.landing {
    position: relative;
    background: var(--parchment);
    padding: 0 20px 40px;
    overflow: hidden;
}

.landing-shore {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: -1px;
}

.landing-shore-svg {
    width: 100%;
    height: 100%;
}

.landing-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.landing-title {
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.08em;
    color: var(--indigo-wash);
    text-transform: lowercase;
    text-align: center;
    margin-bottom: 50px;
}

.landing-columns {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.landing-col {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.landing-col-title {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: var(--accent-size);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burnt-sienna-60);
    margin-bottom: 16px;
}

.landing-links {
    list-style: none;
}

.landing-links li {
    margin-bottom: 10px;
}

.landing-link {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--river-slate-60);
    text-decoration: none;
    position: relative;
    transition: color var(--duration-fast) var(--ease-water);
}

.landing-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--burnt-sienna-40);
    transition: width var(--duration-fast) var(--ease-water);
}

.landing-link:hover {
    color: var(--burnt-sienna);
}

.landing-link:hover::after {
    width: 100%;
}

.landing-about-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--river-slate-60);
}

.landing-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid var(--morning-fog);
}

.landing-copyright {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--river-slate-25);
    text-transform: lowercase;
}

.landing-paddle-icon {
    opacity: 0.4;
}

/* ===================================================
   BUTTON STYLES (paddle-shaped)
   =================================================== */
.paddle-btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--raw-linen);
    background: var(--burnt-sienna-80);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: background var(--duration-fast) var(--ease-water);
}

.paddle-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 1.5px solid var(--burnt-sienna-25);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: transform 0.6s var(--ease-water), opacity 0.6s var(--ease-water);
}

.paddle-btn:hover {
    background: var(--burnt-sienna);
}

.paddle-btn:hover::after {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
    .eddy-orbit-container {
        width: 95vw;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .eddy-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }

    .eddy-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 90%;
        max-width: 320px;
    }

    .eddy-card:hover {
        transform: scale(1.02) !important;
    }

    .waypoint-left,
    .waypoint-right {
        flex-direction: column;
        padding-left: 50px;
        padding-right: 20px;
    }

    .waypoint-marker {
        left: 10px;
        transform: none;
    }

    .portage-path-svg {
        left: 25px;
        transform: none;
    }

    .panorama-track {
        width: 500vw;
    }

    .clearing-1 { left: 10vw; }
    .clearing-2 { left: 130vw; }
    .clearing-3 { left: 260vw; }
    .clearing-4 { left: 390vw; }

    .clearing-inner {
        width: 240px;
        height: 240px;
        padding: 30px;
    }

    .landing-columns {
        flex-direction: column;
        align-items: center;
    }

    .landing-col {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .clearing-inner {
        width: 200px;
        height: 200px;
        padding: 24px;
    }

    .clearing-text {
        font-size: 13px;
    }

    .sw-text {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
}
