/*=============== GOOGLE FONTS ===============*/
/* Loaded via HTML */

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 4rem;

    /*========== Colors ==========*/
    /* Primary gradient */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-gradient-hover: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);

    /* Base colors (Default: Dark) */
    --primary-color: #667eea;
    --primary-dark: #5a6fd6;
    --secondary-color: #764ba2;

    --bg-color: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    --text-color: #e4e4e7;
    --text-muted: #a1a1aa;
    --text-light: #71717a;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /*========== Typography ==========*/
    --font-primary: 'Noto Sans JP', 'Inter', sans-serif;
    --font-secondary: 'Inter', 'Noto Sans JP', sans-serif;

    /* Font sizes */
    --fs-h1: clamp(2.5rem, 5vw, 4rem);
    --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
    --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
    --fs-normal: 1rem;
    --fs-small: 0.875rem;
    --fs-smaller: 0.75rem;

    /* Font weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /*========== Spacing ==========*/
    --section-padding: 6rem 0;
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /*========== Transitions ==========*/
    --transition-fast: 0.3s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /*========== Border radius ==========*/
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    /*========== Shadows ==========*/
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px rgba(102, 126, 234, 0.2);

    /*========== Z-index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/*=============== BASE ===============*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-normal);
    font-weight: var(--fw-regular);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease, opacity 0.25s ease;
}

body.switching-lang {
    opacity: 0;
}

h1,
h2,
h3,
h4 {
    font-weight: var(--fw-bold);
    line-height: 1.3;
    color: var(--text-color);
    transition: color 0.4s ease;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/*=============== REUSABLE ===============*/
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section__title {
    font-size: var(--fs-h2);
    margin-bottom: 1rem;
}

.section__description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hide-mobile {
    display: none;
}

@media screen and (min-width: 768px) {
    .hide-mobile {
        display: inline;
    }
}

/*=============== BUTTONS ===============*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    border-radius: var(--radius-full);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(102, 126, 234, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.btn--outline:hover {
    border-color: var(--border-hover);
    background: var(--glass-bg);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: var(--fs-normal);
}

.btn__icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform var(--transition-fast);
}

.btn__icon--left {
    order: -1;
}

.btn:hover .btn__icon {
    transform: translateX(3px);
}

.btn:hover .btn__icon--left {
    transform: translateX(0);
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    z-index: var(--z-fixed);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.header.nav-open {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: none;
    /* Instant removal to prevent conflict */
}

.header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    /* Dark mode border */
}

[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .header.nav-open {
    background: transparent !important;
}

[data-theme="light"] .header.scrolled::after {
    background: rgba(0, 0, 0, 0.05);
    /* Light mode border */
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: var(--z-fixed);
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-img {
    height: 1.8rem;
    width: auto;
    transition: filter var(--transition-normal);
}

/* Navigation Controls (Right side) */
.nav__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: var(--z-fixed);
    margin: 0;
    /* Ensure no unwanted margin */
}

.control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--text-color);
    border-radius: 50%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    background: transparent;
}


.control-btn:hover {
    background: var(--bg-card-hover);
    color: var(--primary-color);
}

.lang-toggle {
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.5px;
}

.theme-toggle svg {
    width: 1.8rem;
    height: 1.8rem;
}

/* Mobile Toggle */
.nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--text-color);
    cursor: pointer;
}



.nav__toggle:hover {
    color: var(--primary-color);
}

/* Navigation Menu */
.nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.85);
    /* Slightly more opaque */
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateZ(0);
    /* Force hardware acceleration */
    will-change: transform;
}

[data-theme="light"] .nav__menu {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque */
}

.nav__menu.active {
    right: 0;
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.nav__link {
    font-size: 1.75rem;
    font-weight: var(--fw-medium);
    color: var(--text-color);
    position: relative;
    padding: 0.5rem;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

/* Mobile Close Button */
.nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
}

.nav__close:hover {
    color: var(--primary-color);
}

@media screen and (min-width: 992px) {
    .nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        column-gap: 2rem;
    }

    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent !important;
        transform: none;
        z-index: auto;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: none;
        display: block;
    }

    .nav__list {
        flex-direction: row;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.03);
        padding: 0.5rem 0.6rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    [data-theme="light"] .nav__list {
        background: rgba(0, 0, 0, 0.04);
        border-color: rgba(0, 0, 0, 0.05);
    }

    .nav__link {
        font-size: var(--fs-small);
        padding: 0.6rem 1.5rem;
        border-radius: var(--radius-lg);
        color: var(--text-muted);
        opacity: 1;
    }

    .nav__link:hover {
        color: var(--text-color);
        background: var(--bg-card-hover);
    }

    .nav__link.active {
        color: white;
        background: var(--primary-gradient);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    [data-theme="light"] .nav__link.active {
        color: white;
    }

    .nav__link::after {
        display: none;
    }

    .nav__controls {
        justify-self: end;
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }
}

/*=============== HERO ===============*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: var(--header-height);
}

.hero__data {
    max-width: 800px;
}

.hero__subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero__title {
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.scroll-indicator:hover {
    color: var(--text-color);
}

.scroll-indicator__text {
    font-size: var(--fs-smaller);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator__line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--text-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/*=============== BUSINESS ===============*/
.business {
    background: var(--bg-secondary);
}

/*=============== BUSINESS ===============*/
.business__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.business__item {
    display: grid;
    gap: 2rem;
    align-items: center;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color 0.4s ease, border-color 0.4s ease;
}

.business__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.business__item-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    /* Mobile default aspect ratio */
}

.business__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

/* .business__item:hover .business__item-image img {
    transform: scale(1.08);
} */

.business__item-title {
    font-size: var(--fs-h3);
    margin-bottom: 1rem;
    color: var(--text-color);
}

.business__item-text {
    color: var(--text-muted);
    font-size: var(--fs-small);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.business__item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media screen and (min-width: 992px) {
    .business__list {
        gap: 8rem;
    }

    .business__item {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        background: transparent;
        padding: 0;
        border: none;
    }

    .business__item:hover {
        transform: none;
        box-shadow: none;
    }

    .business__item--reverse {
        grid-template-columns: 1fr 1.2fr;
    }

    .business__item--reverse .business__item-image {
        order: 1;
    }

    .business__item-image {
        height: 400px;
        aspect-ratio: auto;
        /* Reset for desktop */
        box-shadow: var(--shadow-lg);
    }

    .business__item-title {
        font-size: var(--fs-h2);
    }

    .business__item-text {
        font-size: var(--fs-normal);
    }
}

.tag {
    padding: 0.25rem 0.75rem;
    font-size: var(--fs-smaller);
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-full);
}

/*=============== ABOUT ===============*/
.about__content {
    display: grid;
    gap: 3rem;
}

@media screen and (min-width: 992px) {
    .about__content {
        max-width: 800px;
        margin: 0 auto;
    }
}

.about__table {
    width: 100%;
    border-collapse: collapse;
}

.about__table tr {
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.4s ease;
}

.about__table th,
.about__table td {
    padding: 1.25rem 1rem;
    text-align: left;
    vertical-align: top;
}

.about__table th {
    width: 30%;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.4s ease;
}

.about__table td {
    font-size: var(--fs-normal);
    transition: color 0.4s ease;
}

.about__table .en {
    font-family: var(--font-secondary);
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.vision-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.vision-card__icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.vision-card__icon svg {
    width: 2rem;
    height: 2rem;
    stroke: white;
}

.vision-card__title {
    font-family: var(--font-secondary);
    font-size: var(--fs-h3);
    margin-bottom: 1rem;
}

.vision-card__text {
    color: var(--text-muted);
    font-size: var(--fs-small);
    line-height: 1.8;
}

/*=============== CONTACT ===============*/
.contact {
    background: var(--bg-secondary);
}

/*=============== FOOTER ===============*/
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
    .footer__content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer__logo-top {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer__logo-top .logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media screen and (min-width: 768px) {
    .footer__logo {
        align-items: flex-start;
    }
}

.footer__tagline {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer__link {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.footer__link:hover {
    color: var(--text-color);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer__copyright {
    font-size: var(--fs-smaller);
    color: var(--text-light);
}

/*=============== ANIMATIONS ===============*/
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.active>* {
    animation: fadeUp 0.6s ease forwards;
}

.stagger-children.active>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-children.active>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-children.active>*:nth-child(3) {
    animation-delay: 0.3s;
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-color: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-card-hover: #ffffff;

    --text-color: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.25);
}

/* The navigation controls and buttons are already defined above. 
   Removing duplicate definitions to avoid conflicts. */

.theme-toggle:hover,
.lang-toggle:hover {
    background: var(--bg-card-hover);
    color: var(--primary-color);
}

.lang-toggle {
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    font-family: var(--font-secondary);
}

@media screen and (max-width: 992px) {
    .nav__controls {
        margin-left: 0;
        margin-top: 0;
        /* Remove 32px margin */
        justify-content: center;
    }

    .nav__controls {
        margin-left: 0;
        margin-top: 0;
        /* Remove 32px margin */
        justify-content: center;
    }
}

/*=============== PRIVACY POLICY ===============*/
.privacy-section {
    padding-top: calc(var(--header-height) + 4rem);
    min-height: 80vh;
}

.privacy-container {
    background: transparent;
    padding: 0;
    width: 100%;
}

.privacy-iframe {
    width: 100%;
    height: 100px;
    /* 初期高さ */
    border: none;
    background: transparent;
    overflow: hidden;
    display: block;
}

/*=============== PRODUCTS ===============*/
.products {
    background: var(--bg-color);
}

.products__grid {
    display: grid;
    gap: 2.5rem;
}

@media screen and (min-width: 768px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.product__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.product__card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

/* .product__card:hover .product__image img {
    transform: scale(1.1);
} */

.product__content {
    padding: 2rem;
}

.product__title {
    font-size: var(--fs-h3);
    margin-bottom: 0.75rem;
}

.product__desc {
    color: var(--text-muted);
    font-size: var(--fs-small);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn--small {
    padding: 0.5rem 1.25rem;
    font-size: var(--fs-smaller);
}