:root {
    --green: #4cbb17;
    --green-dark: #17692b;
    --green-deep: #0c3d22;
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --ink: #102019;
    --text: #26352c;
    --muted: #647267;
    --paper: #fbfaf4;
    --white: #ffffff;
    --line: rgba(16, 32, 25, 0.14);
    --shadow: 0 20px 50px rgba(12, 61, 34, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.6;
}

img,
video {
    max-width: 100%;
    display: block;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(251, 250, 244, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.nav {
    width: min(1120px, calc(100% - 32px));
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--green-deep);
    letter-spacing: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background:
        linear-gradient(120deg, transparent 0 42%, var(--gold-light) 43% 47%, transparent 48%),
        radial-gradient(circle at 35% 35%, var(--gold), var(--green) 45%, var(--green-dark));
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    flex: 0 0 auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--green-deep);
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-links a {
    padding: 10px 12px;
    border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: rgba(76, 187, 23, 0.13);
    outline: none;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: var(--ink);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.24);
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
    background: var(--gold-light);
    outline: none;
}

.button.secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(12, 61, 34, 0.88), rgba(12, 61, 34, 0.55)),
        /*url("../img/kitsugi.jpg") center / cover no-repeat,*/
        url("../img/dark-bowl.png") center / cover no-repeat,
        /*url("../img/light-bowl.png") center / cover no-repeat,*/
        var(--green-deep);
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 61, 34, 0.45), transparent 58%),
        radial-gradient(circle at 80% 18%, rgba(212, 175, 55, 0.18), transparent 34%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    width: min(1120px, calc(100% - 32px));
    min-height: calc(100vh - 74px);
    margin: 0 auto;
    padding: 18px 0 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    align-items: center;
    column-gap: 86px;
    row-gap: 22px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold-light);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 4.35rem);
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.out-of-control-title {
    grid-column: 1 / -1;
    max-width: none;
    margin: 0 auto 6px;
    --title-size: clamp(3rem, 9vw, 7.25rem);
    color: var(--gold-light);
    font-family: inherit;
    font-size: 0;
    font-weight: 900;
    line-height: 0.95;
    text-align: center;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
    white-space: nowrap;
}

.title-letter {
    display: inline-block;
    font-size: var(--title-size);
    animation: title-snap 1650ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation-delay: calc(var(--i) * 92ms);
}

.title-letter:nth-child(4n + 1) {
    --start-x: -54vw;
    --start-y: -8vh;
    --start-r: -14deg;
}

.title-letter:nth-child(4n + 2) {
    --start-x: 48vw;
    --start-y: 9vh;
    --start-r: 12deg;
}

.title-letter:nth-child(4n + 3) {
    --start-x: -36vw;
    --start-y: 32vh;
    --start-r: 8deg;
}

.title-letter:nth-child(4n) {
    --start-x: 42vw;
    --start-y: -28vh;
    --start-r: -10deg;
}

.title-space {
    width: 0.28em;
}

@keyframes title-snap {
    0% {
        opacity: 0;
        transform: translate3d(var(--start-x), var(--start-y), 0) rotate(var(--start-r)) scale(0.92);
    }

    72% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2.2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 610px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.proof-item {
    padding: 18px 18px 0 0;
}

.proof-item strong {
    display: block;
    color: var(--gold-light);
    font-size: 1.35rem;
    line-height: 1.1;
}

.proof-item span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.portrait-frame {
    position: relative;
    padding: 24px;
    border: 2px solid rgba(245, 215, 110, 0.58);
    border-radius: 8px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
        linear-gradient(120deg, #1a7b34, #0c3d22);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.portrait-placeholder {
    overflow: hidden;
    border-radius: 8px;
    background: rgba(12, 29, 21, 0.5);
}

.portrait-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    object-position: center;
}

main section {
    padding: 88px 0;
}

.section-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2 {
    color: var(--green-deep);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.03;
    margin-bottom: 14px;
}

#media-title {
    font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
    gap: 28px;
    align-items: stretch;
}

.statement {
    padding: 34px;
    border-left: 6px solid var(--gold);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(12, 61, 34, 0.08);
}

.statement h3 {
    color: var(--green-deep);
    font-size: 1.6rem;
    line-height: 1.16;
    margin-bottom: 14px;
}

.statement-image {
    margin: 0 0 22px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.7);
    border-radius: 8px;
    background: #081f14;
}

.statement-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.topic-list {
    display: grid;
    gap: 14px;
}

.topic {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.topic strong {
    display: block;
    color: var(--green-deep);
    margin-bottom: 4px;
}

.media-section {
    background: #f3f5eb;
}

.media-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: center;
}

.media-shell {
    position: relative;
    min-height: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: #081f14;
    box-shadow: var(--shadow);
}

.media-shell .youtube-frame {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
    color: var(--white);
}

.play-button {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.play-button::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid var(--ink);
}

.video-placeholder strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.2;
}

.video-placeholder span {
    color: rgba(255, 255, 255, 0.8);
}

.video-page {
    min-height: 100vh;
    background:
        linear-gradient(115deg, rgba(12, 61, 34, 0.92), rgba(12, 61, 34, 0.7)),
        url("../img/dark-bowl.png") center / cover no-repeat,
        var(--green-deep);
}

.video-main {
    min-height: 100vh;
    display: grid;
}

.video-hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 0;
    color: var(--white);
}

.video-panel {
    width: min(1040px, calc(100% - 32px));
    text-align: center;
}

.video-panel h1 {
    max-width: none;
    margin: 0 auto 24px;
    font-size: clamp(2.35rem, 6vw, 5rem);
}

.youtube-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 2px solid rgba(245, 215, 110, 0.72);
    border-radius: 8px;
    background: #081f14;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.youtube-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-home-button {
    margin-top: 24px;
}

.booking {
    background: var(--green-deep);
    color: var(--white);
}

.booking-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 42px;
    border: 1px solid rgba(245, 215, 110, 0.42);
    border-radius: 8px;
    background:
        linear-gradient(118deg, transparent 0 74%, rgba(245, 215, 110, 0.24) 74.2% 74.8%, transparent 75%),
        rgba(255, 255, 255, 0.06);
}

.booking h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
}

.booking p {
    margin-bottom: 0;
    max-width: 710px;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer {
    background: #081f14;
    color: rgba(255, 255, 255, 0.78);
    padding: 34px 0;
}

.footer-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.footer-inner strong {
    display: block;
    color: var(--gold-light);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-weight: 700;
}

.footer-links .social-link {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(245, 215, 110, 0.34);
    border-radius: 50%;
    font-size: 1.15rem;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.footer-links .social-icon {
    width: 1.32rem;
    height: 1.32rem;
    object-fit: contain;
}

.footer-links .substack-link {
    color: #ff6719;
}

.footer-links .youtube-link {
    color: #ff0000;
}

.footer-links .facebook-link {
    color: #1877f2;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--gold-light);
    outline: none;
}

.footer-links .social-link:hover,
.footer-links .social-link:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: currentColor;
    transform: translateY(-2px);
}

@media (max-width: 860px) {
    .nav {
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
        font-size: 0.88rem;
    }

    .nav-links a {
        text-align: center;
        padding: 9px 4px;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-inner,
    .about-grid,
    .media-grid,
    .booking-box {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        min-height: 0;
        padding: 54px 0 42px;
        gap: 34px;
    }

    .out-of-control-title {
        white-space: normal;
    }

    .booking-box {
        padding: 28px;
    }

    .booking .button {
        width: 100%;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand {
        font-size: 0.98rem;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    h1 {
        white-space: normal;
    }

    .proof-item {
        padding-right: 0;
    }

    main section {
        padding: 62px 0;
    }

    .statement {
        padding: 24px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .media-shell {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .title-letter {
        animation: none;
    }
}
