:root {
    --ink: #111912;
    --muted: #5a6258;
    --green: #176943;
    --green-2: #25a66a;
    --green-dark: #0e3f2a;
    --gold: #d9a331;
    --gold-2: #ffd36e;
    --cream: #fff6df;
    --cream-2: #fbebcc;
    --white: rgba(255,255,255,.82);
    --line: rgba(27, 53, 34, .14);
    --danger: #9d2a2a;
    --ok: #176943;
    --shadow: 0 32px 100px rgba(21, 57, 35, .20);
    --soft-shadow: 0 16px 48px rgba(21, 57, 35, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 12% 6%, rgba(255,211,110,.48), transparent 25rem),
        radial-gradient(circle at 82% 10%, rgba(37,166,106,.26), transparent 28rem),
        radial-gradient(circle at 55% 55%, rgba(217,163,49,.16), transparent 38rem),
        linear-gradient(135deg, #fffaf0 0%, #f7ead0 45%, #edf8ef 100%);
    overflow-x: hidden;
}
body:before, body:after {
    content: "";
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(3px);
    opacity: .65;
    pointer-events: none;
}
body:before { width: 24rem; height: 24rem; left: -7rem; top: 22rem; background: radial-gradient(circle, rgba(37,166,106,.22), transparent 68%); animation: floatBlob 12s ease-in-out infinite; }
body:after { width: 26rem; height: 26rem; right: -8rem; bottom: 8rem; background: radial-gradient(circle, rgba(217,163,49,.22), transparent 70%); animation: floatBlob 15s ease-in-out infinite reverse; }
@keyframes floatBlob { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(24px,-22px,0) scale(1.06); } }
a { color: inherit; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 13px clamp(16px, 5vw, 84px);
    border-bottom: 1px solid rgba(255,255,255,.58);
    background: rgba(255,250,241,.78);
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 38px rgba(16, 48, 29, .08);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 950; letter-spacing: -.03em; }
.brand-mark { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; color: white; background: conic-gradient(from 220deg, var(--green), var(--green-2), var(--gold), var(--green)); box-shadow: 0 14px 32px rgba(23,105,67,.28); }
.nav { display: flex; gap: 5px; align-items: center; }
.nav a, .language-toggle a { text-decoration: none; padding: 10px 12px; border-radius: 999px; color: var(--muted); font-weight: 850; transition: background .22s ease, color .22s ease, transform .22s ease; }
.nav a:hover, .language-toggle a:hover { transform: translateY(-2px); background: rgba(23,105,67,.09); color: var(--green-dark); }
.language-toggle { display: inline-flex; padding: 4px; gap: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.70); }
.language-toggle a.active { background: linear-gradient(135deg, var(--green), var(--green-2)); color: white; box-shadow: 0 8px 20px rgba(23,105,67,.22); }
.section { padding: clamp(60px, 8vw, 116px) clamp(16px, 5vw, 84px); }
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .82fr);
    align-items: center;
    gap: clamp(34px, 5vw, 84px);
}
.hero:before {
    content: "";
    position: absolute;
    inset: 7vw clamp(16px, 5vw, 84px) auto auto;
    width: 9rem;
    height: 9rem;
    border: 2px solid rgba(23,105,67,.20);
    border-radius: 38px;
    transform: rotate(18deg);
    opacity: .55;
}
.hero:after {
    content: "Kindness still exists";
    position: absolute;
    left: clamp(16px, 5vw, 84px);
    bottom: 1.2rem;
    color: rgba(15,67,44,.060);
    font-size: clamp(3rem, 9vw, 9rem);
    font-weight: 950;
    letter-spacing: -.08em;
    white-space: nowrap;
    pointer-events: none;
}
.badge, .eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 8px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(23,105,67,.13), rgba(217,163,49,.22));
    color: var(--green-dark);
    border: 1px solid rgba(23,105,67,.14);
    font-weight: 950;
    font-size: .84rem;
    letter-spacing: .02em;
}
h1, h2 { line-height: 1.02; letter-spacing: -.07em; margin: 0; }
h1 { font-size: clamp(3.35rem, 8.2vw, 7.8rem); max-width: 980px; }
h2 { font-size: clamp(2.1rem, 4.2vw, 4.7rem); }
.lead { margin-top: 24px; font-size: clamp(1.18rem, 2vw, 1.66rem); max-width: 760px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 999px;
    padding: 15px 24px;
    font-weight: 950;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-4px); }
.button.primary { color: white; background: linear-gradient(135deg, var(--green-dark), var(--green-2)); box-shadow: 0 20px 46px rgba(23,105,67,.30); }
.button.primary:hover { box-shadow: 0 26px 62px rgba(23,105,67,.38); }
.button.secondary { color: var(--green-dark); background: rgba(255,255,255,.82); border: 1px solid var(--line); }
.button.secondary:hover { border-color: rgba(23,105,67,.35); box-shadow: var(--soft-shadow); }
.hero-side { display: grid; gap: 18px; position: relative; }
.hero-impact {
    position: relative;
    min-height: 430px;
    border-radius: 46px;
    padding: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 24% 24%, rgba(255,211,110,.92), transparent 9rem),
        radial-gradient(circle at 76% 70%, rgba(37,166,106,.64), transparent 13rem),
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.42));
    border: 1px solid rgba(255,255,255,.76);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}
.hero-impact:before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 36px;
    border: 1px dashed rgba(15,67,44,.25);
}
.impact-core {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: min(72%, 330px);
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 34px;
    background: linear-gradient(135deg, rgba(14,63,42,.96), rgba(37,166,106,.92));
    color: white;
    box-shadow: 0 32px 90px rgba(14,63,42,.34);
}
.impact-k { width: 58px; height: 58px; border-radius: 20px; display: grid; place-items: center; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.26); font-size: 2rem; font-weight: 950; }
.impact-core strong { display: block; max-width: 240px; margin-top: 15px; font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: .98; letter-spacing: -.06em; }
.impact-core em { margin-top: 8px; color: rgba(255,255,255,.78); font-style: normal; font-weight: 800; }
.orbit { position: absolute; border: 1px solid rgba(15,67,44,.22); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.orbit-a { width: 82%; aspect-ratio: 1; animation: spin 24s linear infinite; }
.orbit-b { width: 62%; aspect-ratio: 1; animation: spin 18s linear infinite reverse; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.floating-note {
    position: absolute;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: 0 14px 36px rgba(14,63,42,.14);
    color: var(--green-dark);
    font-weight: 950;
    white-space: nowrap;
    animation: bob 4.8s ease-in-out infinite;
}
.note-a { left: 28px; top: 58px; }
.note-b { right: 26px; top: 116px; animation-delay: .8s; }
.note-c { left: 42px; bottom: 58px; animation-delay: 1.4s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 32px;
    padding: 13px;
    background: rgba(255,255,255,.82);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
}
.hero-card div { padding: 18px 14px; border-right: 1px solid var(--line); }
.hero-card div:last-child { border-right: 0; }
.hero-card strong { display: block; font-size: clamp(2.2rem, 4vw, 3.9rem); line-height: 1; color: var(--green-dark); letter-spacing: -.065em; }
.hero-card span { color: var(--muted); font-weight: 850; font-size: .92rem; }
.split { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.text-card, .compact, .founder-card, .contact-form, .table-wrap {
    border: 1px solid rgba(255,255,255,.74);
    background: rgba(255,255,255,.74);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(12px);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.text-card, .compact { border-radius: 34px; padding: clamp(25px, 4vw, 48px); }
.text-card:hover, .compact:hover, .contact-form:hover, .table-wrap:hover, .founder-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(23,105,67,.18); }
.text-card p + p { margin-top: 18px; }
.highlight { background: linear-gradient(135deg, rgba(23,105,67,.14), rgba(217,163,49,.23)); }
.compact { max-width: 1080px; margin: 0 auto; position: relative; overflow: hidden; }
.compact:after { content: ""; position: absolute; right: -70px; top: -70px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(255,211,110,.45), transparent 70%); }
.compact p { margin-top: 18px; color: var(--muted); font-size: 1.12rem; }
.section-head { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: 28px; align-items: end; margin-bottom: 26px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.founder-section { align-items: center; }
.founder-card { position: relative; border-radius: 38px; padding: clamp(18px, 3vw, 30px); display: grid; grid-template-columns: minmax(240px, .95fr) 1fr; gap: 30px; align-items: center; overflow: hidden; }
.founder-card:before { content: ""; position: absolute; left: 14px; top: 14px; bottom: 14px; width: 7px; border-radius: 999px; background: linear-gradient(var(--green-2), var(--gold)); }
.founder-card img { width: 100%; min-height: 330px; height: 100%; object-fit: cover; object-position: 52% 48%; border-radius: 30px; box-shadow: 0 24px 68px rgba(35,51,38,.22); transition: transform .42s ease, filter .42s ease; }
.founder-card:hover img { transform: scale(1.025) rotate(-.35deg); filter: saturate(1.08) contrast(1.03); }
.founder-card p { color: var(--muted); font-size: 1.14rem; }
.founder-placeholder { width: 100%; min-height: 280px; border-radius: 28px; display: grid; place-items: center; font-size: 64px; font-weight: 950; color: #fff; background: linear-gradient(135deg, var(--green), var(--gold)); }
.table-tools { margin-bottom: 16px; }
.table-tools input, .contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 18px; padding: 14px 15px; background: rgba(255,255,255,.92); color: var(--ink); font: inherit; outline: none; }
.table-tools input:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(23,105,67,.58); box-shadow: 0 0 0 4px rgba(23,105,67,.11); }
.table-wrap { overflow: hidden; border-radius: 30px; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 17px 19px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: .86rem; text-transform: uppercase; letter-spacing: .06em; color: var(--green-dark); cursor: pointer; user-select: none; background: linear-gradient(135deg, rgba(23,105,67,.14), rgba(217,163,49,.18)); }
th:after { content: " ↕"; opacity: .45; }
th[data-direction="asc"]:after { content: " ↑"; opacity: 1; }
th[data-direction="desc"]:after { content: " ↓"; opacity: 1; }
tr:last-child td { border-bottom: 0; }
tbody tr { transition: background .2s ease, transform .2s ease; }
tbody tr:hover { background: rgba(23,105,67,.075); transform: scale(1.004); }
.notice { padding: 14px 16px; border-radius: 18px; margin: 12px 0; border: 1px solid var(--line); background: white; }
.notice.success { color: var(--ok); background: rgba(23,105,67,.08); }
.notice.error, .notice.warning { color: var(--danger); background: rgba(157,42,42,.07); }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 980px; border-radius: 34px; padding: clamp(20px, 4vw, 40px); }
.contact-form label { display: grid; gap: 7px; font-weight: 850; color: var(--muted); }
.contact-form .full { grid-column: 1 / -1; }
.contact-form textarea { min-height: 180px; resize: vertical; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.site-footer { padding: 34px clamp(16px, 5vw, 84px); border-top: 1px solid var(--line); color: var(--muted); text-align: center; background: rgba(255,255,255,.35); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .82s ease, transform .82s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
    .hero, .split, .section-head { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
    .founder-card { grid-template-columns: 1fr; }
    .hero-impact { min-height: 360px; }
}
@media (max-width: 860px) {
    .site-header { gap: 10px; flex-wrap: wrap; }
    .nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; }
    .contact-form { grid-template-columns: 1fr; }
    .hero-card { grid-template-columns: 1fr; }
    .hero-card div { border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-card div:last-child { border-bottom: 0; }
    .table-wrap { background: transparent; border: 0; box-shadow: none; backdrop-filter: none; }
    table, thead, tbody, th, td, tr { display: block; }
    thead { display: none; }
    tbody tr { margin-bottom: 14px; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: rgba(255,255,255,.88); box-shadow: 0 14px 36px rgba(23,55,37,.09); }
    td { border-bottom: 1px solid var(--line); padding: 13px 15px; }
    td:before { content: attr(data-label); display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--green-dark); font-weight: 950; margin-bottom: 4px; }
}
@media (max-width: 560px) {
    h1 { font-size: clamp(2.7rem, 15vw, 4.45rem); }
    .section { padding-left: 14px; padding-right: 14px; }
    .hero-impact { min-height: 330px; border-radius: 32px; }
    .impact-core { width: 74%; }
    .floating-note { font-size: .82rem; }
    .note-b { top: 78px; }
    .note-c { bottom: 35px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* v7 stronger visual layer */
body {
    background-size: 120% 120%, 120% 120%, 120% 120%, 100% 100%;
    animation: backgroundShift 18s ease-in-out infinite alternate;
}
@keyframes backgroundShift {
    0% { background-position: 0% 0%, 100% 0%, 40% 60%, 0 0; }
    100% { background-position: 8% 4%, 90% 8%, 55% 45%, 0 0; }
}
.brand-mark { animation: brandPulse 3.4s ease-in-out infinite; }
@keyframes brandPulse {
    0%,100% { transform: translateY(0) rotate(0deg); box-shadow: 0 14px 32px rgba(23,105,67,.28); }
    50% { transform: translateY(-2px) rotate(-3deg); box-shadow: 0 20px 44px rgba(217,163,49,.35); }
}
.hero-content { position: relative; }
.hero-content:before {
    content: "";
    position: absolute;
    left: -22px;
    top: 26px;
    width: 9px;
    height: min(76%, 360px);
    border-radius: 999px;
    background: linear-gradient(var(--gold-2), var(--green-2));
    box-shadow: 0 0 36px rgba(37,166,106,.28);
}
.hero-impact { transform-style: preserve-3d; }
.hero-impact:hover .impact-core { transform: translate(-50%, -50%) scale(1.035); }
.impact-core { transition: transform .35s ease, box-shadow .35s ease; }
.impact-core:after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    animation: pulseRing 2.8s ease-in-out infinite;
}
@keyframes pulseRing {
    0%,100% { transform: scale(.98); opacity: .32; }
    50% { transform: scale(1.06); opacity: .75; }
}
.text-card, .compact, .founder-card, .contact-form, .table-wrap {
    position: relative;
    overflow: hidden;
}
.text-card:after, .compact:before, .founder-card:after, .contact-form:after, .table-wrap:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.34) 42%, transparent 70%);
    transform: translateX(-110%);
    transition: transform .75s ease;
}
.text-card:hover:after, .compact:hover:before, .founder-card:hover:after, .contact-form:hover:after, .table-wrap:hover:after { transform: translateX(110%); }
.records-section { position: relative; }
.records-section:before {
    content: "";
    position: absolute;
    left: clamp(16px, 5vw, 84px);
    right: clamp(16px, 5vw, 84px);
    top: 46px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--gold), var(--green-2));
    box-shadow: 0 10px 34px rgba(37,166,106,.22);
}
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: .83rem;
    line-height: 1;
    font-weight: 950;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: 0 10px 24px rgba(15,67,44,.10);
}
.category-pill:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(255,255,255,.58);
}
.category-hotel { color: #145f40; background: rgba(37,166,106,.13); }
.category-restaurant { color: #8a5a00; background: rgba(255,211,110,.26); }
.category-people { color: #24526f; background: rgba(101,167,209,.18); }
.category-other { color: #66406f; background: rgba(180,126,197,.16); }
tbody tr:hover .category-pill { transform: translateY(-1px); }
td:nth-child(4) { font-weight: 760; }
@media (max-width: 860px) {
    .hero-content:before { left: 0; top: -18px; width: 92px; height: 6px; }
    .category-pill { font-size: .8rem; }
}
