:root {
    --paper: #f3efe7;
    --paper-soft: #faf8f3;
    --ink: #171716;
    --ink-soft: #242321;
    --muted: #6d6962;
    --line: rgba(23, 23, 22, 0.14);
    --red: #ef4236;
    --red-dark: #ca2d24;
    --violet: #734fdb;
    --blue: #476cf0;
    --lime: #d9ff72;
    --white: #ffffff;
    --container: 1240px;
    --header-height: 88px;
    --shadow: 0 24px 70px rgba(28, 26, 22, 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

ul {
    padding: 0;
    list-style: none;
}

::selection {
    color: var(--white);
    background: var(--red);
}

:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 4px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.section-space {
    padding-block: 128px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.19em;
}

.section-eyebrow > span {
    width: 34px;
    height: 2px;
    background: var(--red);
}

.section-eyebrow.light {
    color: rgba(255, 255, 255, 0.62);
}

.section-eyebrow.light > span {
    background: var(--lime);
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(3rem, 6vw, 5.7rem);
    font-weight: 750;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.section-heading h2 em,
.contact-inner h2 em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 72px;
    margin-bottom: 64px;
}

.heading-row > p {
    max-width: 400px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button span {
    margin-left: 18px;
    font-size: 1rem;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--white);
    background: var(--red);
}

.button-primary:hover {
    background: var(--red-dark);
}

.button-text {
    padding-inline: 4px;
    border-bottom-color: var(--ink);
}

.button-text:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.button-outline {
    border-color: var(--ink);
}

.button-outline:hover {
    color: var(--white);
    background: var(--ink);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    background: var(--red);
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.inline-link:hover {
    color: var(--red);
    border-color: var(--red);
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-brand-image {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.13em;
}

.brand-copy small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav > a {
    position: relative;
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.055em;
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 11px 18px;
    color: var(--white);
    background: var(--ink);
}

.nav-cta:hover {
    background: var(--red);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 0;
    color: var(--ink);
    background: transparent;
}

.nav-toggle > span:not(.visually-hidden) {
    display: block;
    width: 100%;
    height: 2px;
    margin-block: 5px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 78px);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.82fr);
    gap: clamp(64px, 8vw, 120px);
    align-items: center;
    padding-bottom: 100px;
}

.hero-content {
    padding-top: 14px;
}

.hero-content h1 {
    max-width: 820px;
    margin-bottom: 34px;
    font-size: clamp(4rem, 7.7vw, 7.2rem);
    font-weight: 780;
    line-height: 0.86;
    letter-spacing: -0.075em;
}

.hero-content h1 em {
    color: var(--red);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 38px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    white-space: pre-line;
}

.hero-actions {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 28px;
}

.hero-platforms {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 58px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.hero-platforms > span {
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero-platforms ul {
    display: flex;
    gap: 22px;
    margin-bottom: 0;
}

.hero-platforms li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

.platform-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.youtube-dot {
    background: var(--red);
}

.instagram-dot {
    background: var(--violet);
}

.web-dot {
    background: var(--ink);
}

.profile-visual {
    position: relative;
    margin-bottom: 0;
}

.portrait-placeholder {
    position: relative;
    display: flex;
    min-height: 590px;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 24%, rgba(239, 66, 54, 0.92) 0 16%, transparent 16.5%),
        radial-gradient(circle at 25% 80%, rgba(115, 79, 219, 0.65) 0 18%, transparent 18.5%),
        linear-gradient(145deg, #242321, #0e0e0d 76%);
    box-shadow: var(--shadow);
}

.portrait-placeholder::before,
.portrait-placeholder::after {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 50%;
    content: "";
}

.portrait-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-has-image::before {
    display: none;
}

.portrait-has-image.portrait-has-title::before {
    display: block;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(14, 14, 13, 0.28), transparent 35%, rgba(14, 14, 13, 0.44));
}

.portrait-has-image::after {
    display: none;
}

.portrait-placeholder::before {
    top: 50%;
    left: 50%;
    width: 430px;
    height: 430px;
    transform: translate(-50%, -50%);
}

.portrait-placeholder::after {
    top: 50%;
    left: 50%;
    width: 310px;
    height: 310px;
    transform: translate(-50%, -50%);
}

.portrait-kicker {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: 30px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.portrait-monogram {
    position: relative;
    z-index: 2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(5rem, 9vw, 8.5rem);
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.08em;
}

.portrait-note {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    max-width: min(280px, calc(100% - 60px));
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: right;
}

.portrait-has-image .portrait-kicker,
.portrait-has-image .portrait-note {
    padding: 0.55rem 0.7rem;
    border-radius: 0.5rem;
    color: var(--white);
    background: rgba(14, 14, 13, 0.58);
    box-shadow: 0 0.4rem 1.4rem rgba(14, 14, 13, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.profile-visual figcaption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 4px 0;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.035em;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63ad52;
    box-shadow: 0 0 0 4px rgba(99, 173, 82, 0.14);
}

.floating-tag {
    position: absolute;
    z-index: 3;
    display: flex;
    width: 126px;
    height: 126px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(23, 23, 22, 0.16);
}

.floating-tag strong {
    font-size: 1.05rem;
}

.floating-tag span {
    margin-top: 5px;
    font-size: 0.6rem;
    font-weight: 750;
}

.floating-tag-video {
    top: 70px;
    right: -52px;
    color: var(--white);
    background: var(--red);
    transform: rotate(8deg);
}

.floating-tag-social {
    bottom: 64px;
    left: -56px;
    color: var(--ink);
    background: var(--lime);
    transform: rotate(-8deg);
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(23, 23, 22, 0.055);
    border-radius: 50%;
}

.hero-orbit-one {
    top: 100px;
    right: -320px;
    width: 760px;
    height: 760px;
}

.hero-orbit-two {
    bottom: 20px;
    left: -230px;
    width: 460px;
    height: 460px;
}

.hero-marquee {
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero-marquee > div {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 28px;
    padding: 20px max(32px, calc((100vw - var(--container)) / 2));
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.19em;
}

.hero-marquee i {
    color: var(--lime);
    font-style: normal;
}

/* About */
.about-section {
    background: var(--paper-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 70px 100px;
}

.about-heading-wide {
    grid-row: span 2;
}

.about-copy {
    max-width: 530px;
    padding-top: 45px;
}

.about-copy p {
    color: var(--muted);
    font-size: 1rem;
}

.about-copy .about-intro {
    margin-bottom: 24px;
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.55;
}

.about-copy .inline-link {
    margin-top: 20px;
}

.about-visual {
    position: relative;
    width: min(86%, 540px);
    margin: -12px 0 0 34px;
    transform: rotate(1.5deg);
}

.about-visual-frame {
    position: relative;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 1.5rem 3.5rem rgba(23, 23, 22, 0.1);
}

.about-visual-frame::before {
    position: absolute;
    z-index: 2;
    top: -12px;
    left: 50%;
    width: 92px;
    height: 26px;
    background: rgba(219, 207, 184, 0.78);
    content: "";
    transform: translateX(-50%) rotate(-2deg);
}

.about-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-visual figcaption {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.55;
}

.about-visual figcaption span {
    color: var(--red);
    font-size: 1rem;
    line-height: 1;
}

.about-signature {
    display: flex;
    max-width: 420px;
    min-height: 180px;
    flex-direction: column;
    justify-content: center;
    padding: 28px 34px;
    border: 1px solid var(--line);
    transform: rotate(-2deg);
}

.about-signature span {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-signature strong {
    margin-block: 2px 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.25rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
}

.about-signature small {
    color: var(--muted);
}

/* Channels */
.channels-section {
    color: var(--white);
    background: var(--ink);
}

.channels-section .section-heading h2 {
    color: var(--white);
}

.channels-section .section-heading h2 em {
    color: var(--lime);
}

.channel-carousel {
    position: relative;
}

.channel-viewport {
    overflow: hidden;
    margin-block: -8px;
    padding-block: 8px;
}

.channel-grid {
    display: flex;
    gap: 16px;
    will-change: transform;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.channel-card {
    position: relative;
    display: flex;
    min-height: 250px;
    overflow: hidden;
    flex: 0 0 calc((100% - 32px) / 3);
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    isolation: isolate;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.channel-carousel-button {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    color: var(--white);
    background: rgba(23, 23, 22, 0.88);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    font-size: 1.2rem;
    transform: translateY(-50%);
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.channel-carousel-button:hover,
.channel-carousel-button:focus-visible {
    color: var(--ink);
    background: var(--lime);
    transform: translateY(-50%) scale(1.06);
}

.channel-carousel-previous {
    left: -24px;
}

.channel-carousel-next {
    right: -24px;
}

.channel-card::before {
    position: absolute;
    right: -54px;
    bottom: -92px;
    z-index: -1;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
}

.channel-card:hover {
    z-index: 2;
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.youtube-card {
    background: var(--red);
}

.instagram-card {
    background: linear-gradient(145deg, var(--violet), #c23f9e 58%, #f37d43);
}

.tiktok-card {
    color: var(--ink);
    background: var(--white);
}

.tiktok-card::before {
    border-color: rgba(23, 23, 22, 0.14);
}

.channel-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.channel-index,
.channel-platform {
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.channel-card-main {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 34px 54px 0 0;
}

.channel-icon {
    display: grid;
    width: 64px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--ink);
    background: var(--white);
    font-size: 1.2rem;
    transform: rotate(-5deg);
}

.channel-account-logo {
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: var(--white);
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.youtube-icon {
    border-radius: 15px;
}

.instagram-icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    font-size: 1.8rem;
}

.tiktok-icon {
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    font-size: 1.5rem;
}

.channel-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.channel-copy small {
    margin-bottom: 6px;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.channel-copy strong {
    margin-bottom: 4px;
    font-size: 1.3rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.channel-copy span {
    color: currentColor;
    font-size: 0.78rem;
    opacity: 0.68;
}

.channel-arrow {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
}

/* Videos */
.videos-section {
    background: var(--paper);
}

.dark-heading > p {
    color: var(--muted);
}

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

.video-card {
    min-width: 0;
}

.video-thumbnail {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.video-thumbnail-image {
    color: var(--white);
    background-color: #171717;
    background-position: center;
    background-size: cover;
    text-decoration: none;
}

.video-card:hover .video-thumbnail {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 750;
    letter-spacing: 0.11em;
}

.video-meta > span {
    color: var(--red);
}

.video-card h3 {
    margin-block: 12px 10px;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.video-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

/* Instagram */
.instagram-section {
    background: var(--paper-soft);
}

.instagram-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(54px, 8vw, 110px);
    align-items: center;
}

.instagram-intro h2 {
    margin-bottom: 30px;
    font-size: clamp(3rem, 5.5vw, 5.3rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.instagram-intro h2 em {
    color: var(--violet);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.instagram-intro > p:not(.section-eyebrow) {
    max-width: 430px;
    margin-bottom: 32px;
    color: var(--muted);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    transform: rotate(1.5deg);
}

.instagram-tile {
    position: relative;
    display: flex;
    aspect-ratio: 1;
    overflow: hidden;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
    color: var(--white);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.instagram-tile-image {
    background-color: #2a2927;
    background-position: center;
    background-size: cover;
}

.instagram-tile-image::before {
    background: rgba(15, 15, 15, 0.08);
}

.instagram-tile::before,
.instagram-tile::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    content: "";
}

.instagram-tile::before {
    top: -25%;
    right: -25%;
    width: 90%;
    height: 90%;
}

.instagram-tile::after {
    top: 22%;
    left: 20%;
    width: 45%;
    height: 45%;
}

.instagram-tile:hover {
    z-index: 2;
    transform: scale(1.05) rotate(-1.5deg);
    box-shadow: var(--shadow);
}

.instagram-tile span,
.instagram-tile small {
    position: relative;
    z-index: 2;
    font-weight: 800;
}

.instagram-tile span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-style: italic;
}

.instagram-tile small {
    font-size: 0.52rem;
    letter-spacing: 0.13em;
}

.tile-one {
    background: linear-gradient(145deg, #724ddb, #3c2f80);
}

.tile-two {
    background: linear-gradient(145deg, #ef4236, #c42672);
}

.tile-three {
    background: linear-gradient(145deg, #2a2927, #59554e);
}

.tile-four {
    background: linear-gradient(145deg, #ef8354, #cc3b70);
}

.tile-five {
    background: linear-gradient(145deg, #476cf0, #6537a8);
}

.tile-six {
    color: var(--ink);
    background: linear-gradient(145deg, #d9ff72, #8fcf53);
}

.tile-six::before,
.tile-six::after {
    border-color: rgba(23, 23, 22, 0.2);
}

/* Contact */
.contact-section {
    position: relative;
    overflow: hidden;
    padding-block: 116px;
    color: var(--white);
    background: var(--red);
}

.contact-section::after {
    position: absolute;
    top: 50%;
    right: -150px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
}

.contact-inner h2 {
    margin-bottom: 0;
    font-size: clamp(3.2rem, 6.5vw, 6.2rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.contact-inner h2 em {
    color: var(--lime);
}

.contact-actions > p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 13px;
    border-bottom: 2px solid var(--white);
    font-size: clamp(1.25rem, 2.3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.contact-email:hover {
    color: var(--lime);
    border-color: var(--lime);
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
}

.contact-socials a {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-socials a:hover {
    color: var(--lime);
}

/* Footer */
.site-footer {
    padding-block: 34px;
    color: var(--white);
    background: var(--ink);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 30px;
}

.footer-brand {
    min-width: 0;
    justify-self: start;
}

.footer-brand .brand-mark {
    color: var(--ink);
    background: var(--white);
}

.footer-brand .site-brand-image {
    max-height: 50px;
}

.footer-brand .brand-copy small {
    color: rgba(255, 255, 255, 0.48);
}

.footer-inner p,
.back-to-top {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.06em;
}

.footer-copyright {
    justify-self: center;
    text-align: center;
}

.back-to-top {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 12px;
}

.back-to-top:hover {
    color: var(--white);
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 24px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
        gap: 60px;
    }

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

    .floating-tag {
        width: 105px;
        height: 105px;
    }

    .floating-tag-video {
        right: -30px;
    }

    .floating-tag-social {
        left: -30px;
    }

    .about-grid {
        gap: 60px;
    }

    .channel-card {
        min-height: 240px;
        padding: 26px;
    }

    .channel-arrow {
        right: 26px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 76px;
    }

    .site-container {
        width: min(calc(100% - 40px), var(--container));
    }

    .section-space {
        padding-block: 92px;
    }

    .site-header {
        position: absolute;
    }

    .nav-toggle {
        position: relative;
        z-index: 102;
        display: block;
    }

    .nav-open .nav-toggle > span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-open .nav-toggle > span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .nav-toggle > span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-open .nav-toggle {
        position: fixed;
        top: 15px;
        right: max(20px, env(safe-area-inset-right));
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 101;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 80px 34px 34px;
        color: var(--white);
        background: var(--ink);
        opacity: 0;
        transition: opacity 180ms ease, visibility 180ms ease;
    }

    .nav-open .site-nav {
        visibility: visible;
        opacity: 1;
    }

    .site-nav > a {
        padding-block: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        font-size: clamp(1.6rem, 7vw, 2.5rem);
        letter-spacing: -0.035em;
    }

    .site-nav > a::after {
        display: none;
    }

    .site-nav .nav-cta {
        margin-top: 18px;
        padding-inline: 0;
        color: var(--lime);
        background: transparent;
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 60px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 68px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        max-width: 680px;
    }

    .profile-visual {
        width: min(88%, 540px);
        margin-inline: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .about-heading,
    .about-heading-wide {
        grid-row: auto;
    }

    .about-visual {
        width: min(92%, 540px);
        margin: 0 auto;
    }

    .about-copy {
        max-width: 680px;
        padding-top: 0;
    }

    .heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 34px;
        margin-bottom: 50px;
    }

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

    .channel-card {
        flex-basis: calc((100% - 16px) / 2);
    }

    .channel-carousel-previous {
        left: -16px;
    }

    .channel-carousel-next {
        right: -16px;
    }

    .instagram-layout {
        grid-template-columns: 1fr;
    }

    .instagram-intro {
        max-width: 620px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 54px;
    }
}

@media (max-width: 620px) {
    .site-container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section-space {
        padding-block: 76px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 46px);
    }

    .hero-content h1 {
        margin-bottom: 26px;
        font-size: clamp(3.25rem, 15vw, 5rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .button {
        width: 100%;
    }

    .button-text {
        width: auto;
        align-self: flex-start;
    }

    .hero-actions .button-primary {
        width: auto;
        max-width: 100%;
        align-self: flex-start;
        padding-inline: 20px;
        white-space: nowrap;
    }

    .hero-platforms {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-top: 42px;
    }

    .hero-platforms ul {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .profile-visual {
        width: 100%;
        min-width: 0;
    }

    .portrait-placeholder {
        width: 100%;
        min-height: 480px;
        padding: 28px;
    }

    .portrait-monogram {
        width: 100%;
        font-size: clamp(3rem, 14vw, 4.25rem);
        line-height: 0.92;
        overflow-wrap: anywhere;
        text-align: center;
    }

    .portrait-note {
        right: 22px;
        bottom: 22px;
    }

    .floating-tag {
        width: 88px;
        height: 88px;
    }

    .floating-tag span {
        display: none;
    }

    .floating-tag-video {
        top: 55px;
        right: 12px;
    }

    .floating-tag-social {
        bottom: 52px;
        left: 12px;
    }

    .section-heading h2,
    .instagram-intro h2 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .about-signature {
        width: calc(100% - 12px);
    }

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

    .channel-card {
        min-height: 220px;
        flex-basis: 100%;
    }

    .channel-carousel-button {
        width: 42px;
        height: 42px;
    }

    .channel-carousel-previous {
        left: 8px;
    }

    .channel-carousel-next {
        right: 8px;
    }

    .instagram-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        transform: none;
    }

    .contact-section {
        padding-block: 82px;
    }

    .contact-inner {
        gap: 44px;
    }

    .contact-inner h2 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .contact-email {
        font-size: 1.1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
        justify-items: start;
    }

    .footer-copyright,
    .back-to-top {
        justify-self: start;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
