@import url("https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
    --bg: #050505;
    --card: #111116;
    --white: #ffffff;
    --muted: #c9c9d4;
    --pink: #ff0a6c;
    --pink-2: #ff4f9a;
    --yellow: #ffd21f;
    --yellow-2: #ffe96b;
    --cyan: #00d7ff;
    --cyan-2: #0078ff;
    --purple: #8b3dff;
    --border: rgba(255,255,255,0.16);
    --radius: 30px;
    --max: 1180px;
    --font-title: "Anton", Impact, sans-serif;
    --font-body: "Montserrat", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background:
        radial-gradient(circle at 12% 8%, rgba(255,10,108,0.18), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(0,215,255,0.13), transparent 28%),
        radial-gradient(circle at 50% 92%, rgba(255,210,31,0.10), transparent 30%),
        var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.10;
    background-image: radial-gradient(rgba(255,255,255,0.55) 1px, transparent 1px);
    background-size: 18px 18px;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(125deg, transparent 0%, rgba(255,10,108,0.045) 42%, transparent 70%),
        linear-gradient(62deg, transparent 0%, rgba(0,215,255,0.04) 34%, transparent 66%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--max), calc(100% - 36px));
    margin: 0 auto;
}

.section {
    padding: 78px 0;
    position: relative;
}

.section-center {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--yellow);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 900;
    margin-bottom: 18px;
}

.section-kicker::before,
.eyebrow::before {
    content: "✦";
    color: var(--pink);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-title);
    line-height: 0.96;
    font-weight: 400;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2.35rem, 5.4vw, 5rem);
    margin-bottom: 24px;
}

h2 span {
    color: var(--yellow);
    display: inline-block;
    transform: rotate(-1deg);
    text-shadow: 4px 4px 0 rgba(255,10,108,0.62);
}

h3 {
    font-size: 1.65rem;
    margin-bottom: 14px;
}

p {
    color: var(--muted);
    font-size: 1.06rem;
}

.section-lead {
    max-width: 780px;
    margin: 0 auto 34px;
    font-size: 1.14rem;
    color: #eeeeee;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 25px;
    border: 3px solid var(--white);
    border-radius: 999px;
    font-weight: 950;
    color: var(--white);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    box-shadow: 6px 6px 0 var(--yellow);
    text-align: center;
}

.btn:hover {
    transform: translate(-3px, -3px) rotate(-1deg);
    box-shadow: 10px 10px 0 var(--yellow);
    filter: brightness(1.06);
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-2));
}

.btn-yellow {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #080808;
    box-shadow: 6px 6px 0 var(--pink);
}

.btn-yellow:hover {
    box-shadow: 10px 10px 0 var(--pink);
}

.btn-cyan {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
    color: #050505;
    box-shadow: 6px 6px 0 var(--pink);
}

.btn-cyan:hover {
    box-shadow: 10px 10px 0 var(--pink);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5,5,5,0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 950;
    white-space: nowrap;
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255,10,108,0.42));
}

.brand-text {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-family: var(--font-title);
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    -webkit-text-stroke: 0.6px rgba(255,255,255,0.35);
    filter: drop-shadow(3px 3px 0 rgba(255,10,108,0.45));
}

.brand-text span:nth-child(1),
.brand-text span:nth-child(6) {
    color: var(--pink);
}

.brand-text span:nth-child(2),
.brand-text span:nth-child(7) {
    color: var(--yellow);
}

.brand-text span:nth-child(3),
.brand-text span:nth-child(8) {
    color: var(--cyan);
}

.brand-text span:nth-child(4) {
    color: var(--white);
}

.brand-text span:nth-child(5) {
    color: var(--purple);
    margin-right: 7px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 850;
    transition: color 0.2s ease;
    position: relative;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav a:hover {
    color: var(--white);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #050505;
    font-weight: 950;
    padding: 11px 18px;
    border-radius: 999px;
    border: 2px solid var(--white);
    box-shadow: 4px 4px 0 var(--pink);
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 44px;
    border: 2px solid var(--white);
    background: var(--pink);
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--yellow);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--white);
    margin: 5px auto;
    border-radius: 8px;
}

.hero-section {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 72px 0 84px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -95px;
    top: 115px;
    background: radial-gradient(circle, var(--cyan) 0 2px, transparent 3px);
    background-size: 18px 18px;
    border-radius: 50%;
    opacity: 0.26;
    transform: rotate(12deg);
}

.hero-section::after {
    content: "TAROT HUB";
    position: absolute;
    left: -38px;
    bottom: 15px;
    font-family: var(--font-title);
    font-size: clamp(4rem, 13vw, 13rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.065);
    pointer-events: none;
    white-space: nowrap;
}

.hero-bg-dots {
    position: absolute;
    width: 390px;
    height: 390px;
    left: -145px;
    top: 16%;
    background-image: radial-gradient(rgba(255,10,108,0.72) 1.5px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.13;
    transform: rotate(-8deg);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1010px;
    text-align: center;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.hero-logo {
    width: min(305px, 72vw);
    filter:
        drop-shadow(0 0 18px rgba(255,10,108,0.34))
        drop-shadow(0 0 28px rgba(0,215,255,0.14));
}

.hero-title {
    display: grid;
    justify-items: center;
    gap: 2px;
    font-size: clamp(3.2rem, 8.4vw, 8rem);
    margin-bottom: 20px;
}

.hero-title span {
    display: inline-block;
}

.word-white {
    color: var(--white);
    transform: rotate(-0.8deg);
}

.word-pink {
    color: var(--pink);
    transform: rotate(0.9deg);
    text-shadow: 5px 5px 0 var(--yellow);
}

.word-yellow {
    color: var(--yellow);
    transform: rotate(-0.9deg);
    text-shadow: 5px 5px 0 var(--pink);
}

.hero-statement {
    display: grid;
    justify-items: center;
    gap: 4px;
    margin: 0 auto 26px;
    font-family: var(--font-title);
    font-size: clamp(1.85rem, 4.6vw, 5rem);
    line-height: 0.96;
    text-transform: uppercase;
}

.hero-statement span {
    color: var(--white);
    transform: rotate(-0.5deg);
}

.hero-statement strong {
    display: inline-block;
    color: var(--cyan);
    font-weight: 400;
    transform: rotate(0.5deg);
    text-shadow: 5px 5px 0 var(--pink);
}

.hero-text {
    max-width: 790px;
    margin: 0 auto 34px;
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    color: #eeeeee;
    font-weight: 550;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.highlight-card,
.contact-box,
.bot-box,
.instagram-box {
    border: 3px solid var(--white);
    background:
        linear-gradient(135deg, rgba(255,10,108,0.12), rgba(0,215,255,0.065)),
        var(--card);
    border-radius: var(--radius);
    box-shadow: 12px 12px 0 var(--pink);
    position: relative;
}

.highlight-card {
    max-width: 650px;
    margin: 38px auto 0;
    padding: 42px;
    text-align: center;
    transform: rotate(0.6deg);
}

.pop-number {
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #050505;
    border: 3px solid var(--white);
    border-radius: 50%;
    font-weight: 950;
    font-size: 1.2rem;
    margin-bottom: 22px;
    box-shadow: 6px 6px 0 var(--cyan);
    transform: rotate(-8deg);
}

.bot-section {
    padding-top: 28px;
}

.bot-box {
    padding: 56px;
    box-shadow: 14px 14px 0 var(--cyan);
    overflow: hidden;
    text-align: center;
    transform: rotate(-0.2deg);
}

.bot-box::before {
    content: "24/7";
    position: absolute;
    right: -12px;
    top: -22px;
    font-family: var(--font-title);
    font-size: clamp(5rem, 13vw, 12rem);
    line-height: 0.8;
    color: rgba(255,255,255,0.045);
    transform: rotate(-8deg);
}

.bot-box > * {
    position: relative;
    z-index: 2;
}

.bot-text {
    max-width: 790px;
    margin: 0 auto 32px;
}

.bot-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 780px;
    margin: 0 auto 36px;
}

.bot-list span {
    padding: 14px 16px;
    border: 2px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    background: rgba(255,255,255,0.065);
    color: var(--white);
    font-weight: 850;
}

.masa-section {
    padding: 88px 0;
    overflow: visible;
}

.masa-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(310px, 420px);
    gap: 54px;
    align-items: center;
    border: 3px solid var(--white);
    border-radius: var(--radius);
    padding: 48px;
    background:
        radial-gradient(circle at 12% 20%, rgba(0,215,255,0.16), transparent 32%),
        radial-gradient(circle at 90% 88%, rgba(255,210,31,0.14), transparent 30%),
        linear-gradient(135deg, rgba(255,10,108,0.13), rgba(0,215,255,0.07)),
        var(--card);
    box-shadow: 14px 14px 0 var(--yellow);
    position: relative;
    overflow: visible;
}

.masa-card::before {
    content: "MAŠA";
    position: absolute;
    right: 28px;
    top: 12px;
    font-family: var(--font-title);
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 1;
    color: rgba(255,255,255,0.035);
    pointer-events: none;
}

.masa-content {
    position: relative;
    z-index: 5;
}

.masa-content p {
    margin-bottom: 15px;
}

.signature {
    margin-top: 24px;
    color: var(--white);
    font-weight: 950;
    font-size: 1.15rem;
}

.signature span {
    color: var(--yellow);
    font-size: 0.98rem;
}

.masa-photo-wrap {
    border: 3px solid var(--white);
    border-radius: 38px;
    padding: 14px;
    background: linear-gradient(135deg, var(--pink), var(--pink-2), var(--yellow));
    box-shadow: 10px 10px 0 var(--pink), 0 0 40px rgba(255,10,108,0.22);
    transform: rotate(-1deg);
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.masa-photo {
    width: 100%;
    border-radius: 26px;
    aspect-ratio: 500 / 655;
    object-fit: contain;
    background: #050505;
    border: 3px solid var(--white);
}

.instagram-section {
    padding: 70px 0 70px;
}

.instagram-box {
    padding: 58px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 14px 14px 0 var(--yellow);
    transform: rotate(-0.2deg);
    text-align: center;
    border: 3px solid var(--white);
    background:
        linear-gradient(135deg, rgba(255,10,108,0.12), rgba(0,215,255,0.065)),
        var(--card);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.instagram-box::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 2px dashed rgba(255,210,31,0.45);
    border-radius: 22px;
    pointer-events: none;
}

.instagram-box > * {
    position: relative;
    z-index: 2;
}

.instagram-text {
    max-width: 760px;
    margin: 0 auto;
    color: #eeeeee;
    font-size: 1.06rem;
}

.instagram-actions {
    margin-top: 32px;
}

.instagram-inner-card,
.instagram-badge,
.instagram-inner-card h3,
.instagram-inner-card p {
    display: none;
}

.contact-section {
    padding: 70px 0 118px;
}

.contact-box {
    padding: 58px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 14px 14px 0 var(--yellow);
    transform: rotate(-0.2deg);
    text-align: center;
}

.contact-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.site-footer {
    border-top: 3px solid var(--pink);
    background: #030303;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--cyan), var(--pink));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
    gap: 34px;
    padding: 60px 0 42px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--yellow);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 0.98rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--muted);
    font-weight: 800;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-link {
    display: block;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 12px;
    }

    .site-nav a {
        font-size: 0.88rem;
    }

    .header-cta {
        display: none;
    }

    .masa-card {
        grid-template-columns: 1fr;
        gap: 38px;
        text-align: center;
    }

    .masa-photo-wrap {
        max-width: 360px;
    }

    .instagram-inner-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 24px, var(--max));
    }

    html {
        scroll-padding-top: 78px;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand-text {
        font-size: 1.1rem;
        filter: drop-shadow(2px 2px 0 rgba(255,10,108,0.45));
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        left: 13px;
        right: 13px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(5,5,5,0.98);
        border: 3px solid var(--white);
        border-radius: 24px;
        box-shadow: 8px 8px 0 var(--pink);
        padding: 14px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 15px 14px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: var(--white);
        font-size: 1rem;
        text-align: center;
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 56px 0;
        text-align: center;
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3.1rem);
        line-height: 1;
        margin-bottom: 18px;
    }

    h3 {
        font-size: 1.35rem;
        line-height: 1.12;
    }

    p {
        font-size: 0.96rem;
        line-height: 1.66;
    }

    .section-kicker,
    .eyebrow {
        font-size: 0.67rem;
        line-height: 1.45;
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0 58px;
    }

    .hero-section::before {
        width: 250px;
        height: 250px;
        right: -120px;
        top: 90px;
        opacity: 0.20;
    }

    .hero-section::after {
        display: none;
    }

    .hero-bg-dots {
        width: 240px;
        height: 240px;
        left: -130px;
        opacity: 0.10;
    }

    .hero-logo-wrap {
        margin-bottom: 16px;
    }

    .hero-logo {
        width: min(205px, 66vw);
    }

    .hero-title {
        font-size: clamp(2.35rem, 14vw, 4.15rem);
        line-height: 0.98;
        gap: 0;
        margin-bottom: 16px;
    }

    .word-pink {
        text-shadow: 3px 3px 0 rgba(255,210,31,0.9);
    }

    .word-yellow {
        text-shadow: 3px 3px 0 rgba(255,10,108,0.9);
    }

    .hero-statement {
        font-size: clamp(1.42rem, 8.2vw, 2.55rem);
        line-height: 1;
        max-width: 320px;
        margin-bottom: 22px;
    }

    .hero-statement strong {
        text-shadow: 3px 3px 0 var(--pink);
    }

    .hero-text {
        max-width: 340px;
        margin: 0 auto 26px;
        font-size: 0.96rem;
        line-height: 1.64;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
        min-height: 49px;
        padding: 12px 16px;
        font-size: 0.86rem;
        box-shadow: 4px 4px 0 var(--yellow);
    }

    .btn-yellow,
    .btn-cyan {
        box-shadow: 4px 4px 0 var(--pink);
    }

    .highlight-card,
    .bot-box,
    .contact-box,
    .instagram-box,
    .masa-card {
        border-radius: 22px;
    }

    .highlight-card {
        padding: 28px 20px;
        margin-top: 30px;
        transform: rotate(0.3deg);
        box-shadow: 7px 7px 0 var(--pink);
    }

    .pop-number {
        width: 56px;
        height: 56px;
        font-size: 0.95rem;
        margin-bottom: 18px;
        box-shadow: 4px 4px 0 var(--cyan);
    }

    .bot-section {
        padding-top: 20px;
    }

    .bot-box {
        padding: 32px 19px;
        transform: rotate(-0.1deg);
        box-shadow: 8px 8px 0 var(--cyan);
    }

    .bot-box::before {
        font-size: 5.5rem;
        top: -8px;
        right: -8px;
    }

    .bot-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 28px;
    }

    .bot-list span {
        padding: 12px 13px;
        font-size: 0.88rem;
        text-align: center;
        border-radius: 14px;
    }

    .masa-section {
        padding: 56px 0;
    }

    .masa-card {
        padding: 30px 20px;
        gap: 30px;
        box-shadow: 8px 8px 0 var(--yellow);
    }

    .masa-card::before {
        display: none;
    }

    .masa-photo-wrap {
        max-width: 305px;
        padding: 10px;
        border-radius: 28px;
        transform: rotate(-0.25deg);
        box-shadow: 7px 7px 0 var(--pink);
    }

    .masa-photo {
        border-radius: 20px;
    }

    .signature {
        text-align: center;
    }

    .instagram-section {
        padding: 56px 0 66px;
    }

    .instagram-box {
        padding: 32px 19px;
        box-shadow: 8px 8px 0 var(--yellow);
        transform: rotate(-0.15deg);
    }

    .instagram-box::before {
        inset: 10px;
        border-radius: 16px;
    }

    .instagram-text {
        font-size: 0.96rem;
        margin-bottom: 0;
    }

    .contact-section {
        padding: 56px 0 76px;
    }

    .contact-box {
        padding: 32px 19px;
        transform: rotate(-0.15deg);
        box-shadow: 8px 8px 0 var(--yellow);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 26px;
        padding: 44px 0 34px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 22px, var(--max));
    }

    .brand {
        gap: 8px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand-text {
        font-size: 0.96rem;
    }

    .hero-section {
        padding-top: 34px;
    }

    .hero-logo {
        width: min(195px, 64vw);
    }

    .hero-title {
        font-size: clamp(2.15rem, 15.2vw, 3.5rem);
    }

    .hero-statement {
        font-size: clamp(1.34rem, 8vw, 2.18rem);
        max-width: 300px;
    }

    .hero-text {
        max-width: 310px;
    }

    .section {
        padding: 50px 0;
    }

    h2 {
        font-size: clamp(1.82rem, 10.5vw, 2.65rem);
    }

    .highlight-card,
    .bot-box,
    .contact-box,
    .instagram-box,
    .masa-card {
        padding-left: 17px;
        padding-right: 17px;
    }

    .masa-photo-wrap {
        max-width: 285px;
    }
}