* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: #1f1f1f;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 64px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(90deg, rgba(244, 124, 32, 0.96) 0%, rgba(249, 144, 55, 0.94) 55%, rgba(255, 163, 79, 0.92) 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(110, 52, 8, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(0);
    opacity: 1;
    will-change: transform, opacity, background-color, backdrop-filter, box-shadow;
    transition: background-color 0.45s ease, box-shadow 0.45s ease, padding 0.45s ease, backdrop-filter 0.45s ease, -webkit-backdrop-filter 0.45s ease, transform 0.45s ease, opacity 0.45s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-icon {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    padding: 4px;
    box-shadow:
        0 10px 18px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: perspective(120px) translateZ(0) rotateX(6deg);
}

.navbar nav {
    display: flex;
    gap: 28px;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 10px 14px;
    border-radius: 8px;
    position: relative;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.95);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.navbar a:hover,
.navbar a:focus-visible {
    background-color: rgba(255, 255, 255, 0.10);
    color: #fff;
    transform: translateY(-1px);
}

.navbar a:hover::after,
.navbar a:focus-visible::after,
.navbar a.active::after {
    width: 60%;
}

.navbar a.active {
    background-color: transparent;
    color: #ffffff;
}

.hero {
    max-width: 1240px;
    margin: 0 auto;
    min-height: calc(100vh - 88px);
    padding: 88px 64px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
    background:
        radial-gradient(circle at top left, rgba(244, 124, 32, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
}

.hero-copy {
    max-width: 640px;
    text-align: left;
    justify-self: start;
}

.hero-identity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-identity-logo {
    width: 110px;
    height: auto;
    margin-bottom: 10px;
    object-fit: contain;
}

.hero-name {
    color: #111111;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-role {
    color: #666666;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.eyebrow {
    margin-bottom: 18px;
    color: #F47C20;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: #111111;
}

.hero-text {
    max-width: 560px;
    margin: 0;
    font-size: 1.12rem;
    color: #4c4c4c;
}

.hero-text-secondary {
    margin-top: 18px;
}

.button-primary {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 28px;
    border-radius: 999px;
    background: #F47C20;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(244, 124, 32, 0.18);
}

.hero-media {
    display: flex;
    align-items: center;
    perspective: 1600px;
}

.hero-card {
    width: 100%;
    min-height: 620px;
    cursor: pointer;
}

.hero-card-inner {
    position: relative;
    width: 100%;
    min-height: 620px;
    transform-style: preserve-3d;
    transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .hero-card:hover .hero-card-inner {
        transform: rotateY(180deg);
    }
}

.hero-card.is-flipped .hero-card-inner {
    transform: rotateY(180deg);
}

.hero-card-face,
.about-media-stack img,
.gallery-item iframe,
.gallery-item img {
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.hero-card-face {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 620px;
    backface-visibility: hidden;
    overflow: hidden;
}

.hero-card-front {
    background: #ffffff;
}

.hero-portrait-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.hero-portrait {
    width: 100%;
    height: 100%;
    max-height: 720px;
    min-height: 620px;
    object-fit: cover;
    object-position: center 18%;
}

.hero-card-hint {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #4b4b4b;
    font-size: 0.84rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.hero-card-back {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 40px 36px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    transform: rotateY(180deg);
}

.hero-social-title {
    color: #111111;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.hero-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 72px;
    padding: 16px 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    background: #ffffff;
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: #F47C20;
    flex: 0 0 auto;
}

.social-link:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(244, 124, 32, 0.35);
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
}

.section-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 110px 64px;
}

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

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

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #111111;
}

.section-intro {
    margin-top: 18px;
    color: #4c4c4c;
    font-size: 1.04rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: start;
}

.about-media-stack {
    display: grid;
    gap: 28px;
    align-content: start;
}

.about-carousel {
    position: relative;
    width: 100%;
    padding: 10px 0 62px;
}

.about-carousel-track {
    position: relative;
    min-height: 560px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    box-shadow: 0 22px 52px rgba(17, 17, 17, 0.09);
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.55s ease, transform 0.7s ease;
}

.about-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    transform: scale(1);
}

.about-slide img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.about-supporting-media {
    width: 100%;
    padding-top: 8px;
}

.about-supporting-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.about-supporting-label {
    color: #202020;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-supporting-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #232323;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
    transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.about-supporting-arrow:hover {
    transform: translateY(-1px);
    background: #ffffff;
    border-color: rgba(244, 124, 32, 0.2);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
}

.about-supporting-arrow span {
    font-size: 1.35rem;
    line-height: 1;
}

.about-supporting-panels {
    position: relative;
}

.about-supporting-panel {
    display: none;
    animation: supportingFade 0.35s ease;
}

.about-supporting-panel.is-active {
    display: block;
}

.about-supporting-link {
    position: relative;
    display: block;
    min-height: 500px;
    padding: 16px;
    border-radius: 32px;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.about-supporting-image {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.08);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.about-supporting-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.42) 100%);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-supporting-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #111111;
    font-size: 1.2rem;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.14);
}

.about-supporting-text {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.about-supporting-link:hover .about-supporting-image,
.about-supporting-link:focus-visible .about-supporting-image {
    transform: scale(1.015);
    filter: brightness(0.9);
}

.about-supporting-link:hover .about-supporting-overlay,
.about-supporting-link:focus-visible .about-supporting-overlay {
    opacity: 1;
}

.about-supporting-embed {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    padding: 16px;
}

.about-supporting-embed iframe {
    display: block;
    width: 100%;
    min-height: 500px;
    border: 0;
    border-radius: 24px;
    background: #ffffff;
}

@keyframes supportingFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-carousel-arrow {
    position: absolute;
    top: calc(50% - 27px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #232323;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(17, 17, 17, 0.09);
    backdrop-filter: blur(6px);
    transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
    z-index: 2;
}

.about-carousel-arrow:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(244, 124, 32, 0.2);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
}

.about-carousel-arrow span {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;
}

.about-carousel-prev {
    left: 18px;
}

.about-carousel-next {
    right: 18px;
}

.about-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.about-dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.18);
    cursor: pointer;
    transition: transform 0.28s ease, background-color 0.28s ease, width 0.28s ease, opacity 0.28s ease;
}

.about-dot.is-active {
    width: 28px;
    background: #F47C20;
    opacity: 1;
}

.about-dot:hover {
    transform: scale(1.08);
    background: rgba(244, 124, 32, 0.45);
}

.about-copy {
    display: grid;
    gap: 22px;
    padding: 34px 32px;
    border-radius: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
    border: 1px solid rgba(17, 17, 17, 0.05);
    font-size: 1.05rem;
    color: #404040;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.value-item {
    padding-top: 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.value-number {
    display: inline-block;
    margin-bottom: 16px;
    color: #F47C20;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.value-item h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
    color: #111111;
}

.value-item p {
    color: #525252;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(325px, 1fr));
    gap: 24px;
    align-items: start;
    justify-content: center;
}

.media-heading {
    margin-bottom: 56px;
}

.gallery-item {
    display: flex;
    justify-content: center;
}

.media-intro {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.media-card {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.media-card-frame {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-item .tiktok-embed {
    margin: 0 auto;
    width: 100%;
    min-width: 325px;
}

.gallery-item iframe,
.gallery-item img {
    width: 100%;
    min-height: 476px;
    background: #ffffff;
}

.gallery-item iframe {
    display: block;
    border-radius: 24px;
}

.gallery-item .tiktok-embed {
    border-radius: 24px;
    overflow: hidden;
}

.statement {
    padding-top: 40px;
    padding-bottom: 120px;
    text-align: center;
}

.statement-text {
    max-width: 980px;
    margin: 0 auto;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: #111111;
}

.contact-box {
    text-align: center;
    margin-top: 30px;
}

.contact-box h3 {
    font-size: 16px;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 15px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-item a {
    text-decoration: none;
    color: #222;
}

.contact-item .icon {
    font-size: 18px;
    color: #1f9d55;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.contact-item.secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    background: transparent;
    box-shadow: none;
}

.contact-item.secondary .icon {
    color: #ff6a00;
    font-size: 16px;
}

.contact-item.secondary a {
    color: #ff6a00;
    font-size: 14px;
    font-weight: 500;
}

footer {
    padding: 32px 64px 40px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    text-align: center;
    color: #5c5c5c;
    background: #ffffff;
}

@media (max-width: 1024px) {
    .hero,
    .about-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        text-align: center;
        justify-self: center;
    }

    .hero-identity {
        align-items: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-media {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-card,
    .hero-card-inner,
    .hero-card-face,
    .hero-portrait,
    .about-carousel-track,
    .about-slide img,
    .about-supporting-image,
    .about-supporting-link,
    .about-supporting-embed iframe {
        min-height: 460px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media (max-width: 760px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }

    .navbar nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 18px;
    }

    .hero,
    .section-shell,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        padding-top: 56px;
        padding-bottom: 64px;
        gap: 36px;
    }

    .section-shell {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-portrait,
    .hero-card,
    .hero-card-inner,
    .hero-card-face,
    .about-carousel-track,
    .about-slide img,
    .about-supporting-image,
    .about-supporting-link,
    .about-supporting-embed iframe,
    .gallery-item iframe,
    .gallery-item img {
        min-height: 220px;
    }

    .about-copy {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .about-supporting-link,
    .about-supporting-embed {
        padding: 12px;
        border-radius: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item .tiktok-embed {
        min-width: 100%;
    }

    .media-card {
        padding: 12px;
        border-radius: 24px;
    }

    .media-card-frame {
        min-height: 420px;
        border-radius: 18px;
    }

    .about-carousel {
        padding-bottom: 48px;
    }

    .about-carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .about-carousel-prev {
        left: 12px;
    }

    .about-carousel-next {
        right: 12px;
    }

    .hero-card-hint {
        left: 14px;
        right: 14px;
        bottom: 14px;
        text-align: center;
    }

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

    .hero-identity-logo {
        width: 96px;
        right: 10px;
    }

    .button-primary {
        width: 100%;
        text-align: center;
    }
}

