: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: 56px;
    row-gap: 22px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold-light);
    font-size: 0.86rem;
    font-weight: 900;
    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.7rem, 7vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.out-of-control-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.03em;
    grid-column: 1 / -1;
    max-width: none;
    margin: 0 auto -10px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.15rem, 5.6vw, 5.1rem);
    line-height: 0.95;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.title-letter {
    display: inline-block;
}

.title-space {
    width: 0.32em;
}

.letter-0 {
    font-size: 1.05em;
    transform: translateY(-0.08em);
}

.letter-1 {
    font-size: 0.56em;
    transform: translateY(0.16em);
}

.letter-2 {
    font-size: 0.74em;
    transform: translateY(0.02em);
}

.letter-3 {
    font-size: 0.46em;
    transform: translateY(0.19em);
}

.letter-4 {
    font-size: 0.95em;
    transform: translateY(-0.12em);
}

.letter-5 {
    font-size: 0.62em;
    transform: translateY(0.09em);
}

.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;
    min-height: 620px;
    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-frame::before,
.portrait-frame::after,
.media-shell::after {
    content: "";
    position: absolute;
    inset: -10%;
    background:
        linear-gradient(104deg, transparent 0 28%, rgba(245, 215, 110, 0.88) 28.2% 28.8%, transparent 29%),
        linear-gradient(22deg, transparent 0 56%, rgba(212, 175, 55, 0.9) 56.2% 56.7%, transparent 57%),
        linear-gradient(150deg, transparent 0 68%, rgba(245, 215, 110, 0.75) 68.2% 68.8%, transparent 69%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.portrait-frame::after {
    inset: auto 24px 24px 24px;
    height: 42%;
    background:
        linear-gradient(0deg, rgba(12, 61, 34, 0.85), transparent),
        linear-gradient(120deg, transparent 0 42%, rgba(245, 215, 110, 0.72) 42.3% 42.9%, transparent 43.1%);
    border-radius: 8px;
    mix-blend-mode: normal;
}

.portrait-placeholder {
    position: absolute;
    inset: 24px;
    display: grid;
    align-content: end;
    min-height: 540px;
    padding: 28px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 54% 24%, rgba(245, 215, 110, 0.28), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(12, 61, 34, 0.88)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 800'%3E%3Crect width='600' height='800' fill='%2317692b'/%3E%3Ccircle cx='300' cy='215' r='94' fill='%23f5d76e' fill-opacity='.92'/%3E%3Cpath d='M130 690c24-180 112-294 176-294s150 114 174 294z' fill='%230c3d22'/%3E%3Cpath d='M178 690c18-130 79-225 126-225s108 95 126 225z' fill='%234cbb17' fill-opacity='.72'/%3E%3Cpath d='M64 142l92 48 46-116 84 76 92-96 32 126 126-34-76 110 116 58-130 30 36 126-116-64-72 112-42-132-130 24 84-104z' fill='%23ffffff' fill-opacity='.08'/%3E%3C/svg%3E") center / cover;
    color: var(--white);
}

.portrait-placeholder p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.82);
}

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;
}

.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;
}

.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: 310px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--gold);
    background:
        linear-gradient(140deg, rgba(12, 61, 34, 0.86), rgba(76, 187, 23, 0.74)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 560'%3E%3Crect width='900' height='560' fill='%230c3d22'/%3E%3Cpath d='M0 370c120-75 213-108 351-67 117 35 180 74 298 28 73-29 147-88 251-73v302H0z' fill='%234cbb17' fill-opacity='.7'/%3E%3Ccircle cx='684' cy='150' r='86' fill='%23d4af37' fill-opacity='.88'/%3E%3Cpath d='M60 106h780v342H60z' fill='none' stroke='%23ffffff' stroke-opacity='.22' stroke-width='10'/%3E%3C/svg%3E") center / cover;
    box-shadow: var(--shadow);
}

.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);
}

.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;
    gap: 14px;
    font-weight: 700;
}

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

@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;
    }

    .portrait-frame {
        min-height: 460px;
    }

    .portrait-placeholder {
        min-height: 380px;
    }

    .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;
    }

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

    main section {
        padding: 62px 0;
    }

    .statement {
        padding: 24px;
    }

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

    .media-shell {
        min-height: 260px;
    }
}
