/* Гончарная мастерская «Панда» — стили */

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

:root {
    --color-clay: #C25A3C;
    --color-clay-dark: #9F452D;
    --color-sand: #F9F6F0;
    --color-sand-deep: #EFE7D8;
    --color-bamboo: #6B8E4E;
    --color-bamboo-dark: #587640;
    --color-text: #2D2D2D;
    --color-text-muted: #7A7A7A;
    --color-white: #ffffff;
    --color-card: #ffffff;
    --shadow-sm: 0 4px 14px rgba(44, 44, 44, 0.08);
    --shadow-md: 0 12px 32px rgba(44, 44, 44, 0.12);
    --radius: 16px;
    --radius-sm: 12px;
    --transition: 0.28s ease;
    --font-sans: "Inter", system-ui, -apple-system, sans-serif;
    --font-display: "Manrope", "Inter", system-ui, sans-serif;
    --container: 1140px;
    --header-h: 72px;
    --page-gutter: 20px;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-sand);
}

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

a {
    color: var(--color-clay-dark);
}

a:hover {
    color: var(--color-bamboo-dark);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--color-clay);
    color: var(--color-white);
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.section-anchor {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn--primary {
    background: var(--color-clay);
    color: var(--color-white);
    border-color: var(--color-clay);
}

.btn--primary:hover {
    background: var(--color-clay-dark);
    border-color: var(--color-clay-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: transparent;
    color: var(--color-clay-dark);
    border-color: var(--color-clay);
}

.btn--secondary:hover {
    background: var(--color-white);
    color: var(--color-text);
}

.btn--accent {
    background: var(--color-bamboo);
    color: var(--color-white);
    border-color: var(--color-bamboo);
}

.btn--accent:hover {
    background: var(--color-bamboo-dark);
    border-color: var(--color-bamboo-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: var(--color-white);
    color: var(--color-clay-dark);
    border-color: var(--color-sand-deep);
}

.btn--outline:hover {
    border-color: var(--color-clay);
    background: var(--color-sand);
}

.btn--wide {
    width: 100%;
}

.btn--footer {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--footer:hover {
    background: var(--color-white);
    color: var(--color-clay-dark);
    border-color: var(--color-white);
}

.btn--gift {
    background: linear-gradient(135deg, #e8b4b8 0%, var(--color-clay) 100%);
    color: var(--color-white);
    border: none;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.btn--gift:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.btn--quiz {
    background: var(--color-white);
    border: 2px solid var(--color-sand-deep);
    color: var(--color-text);
    text-align: left;
    justify-content: flex-start;
}

.btn--quiz:hover {
    border-color: var(--color-bamboo);
    background: var(--color-sand);
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 247, 232, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(194, 126, 74, 0.15);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
    padding: 0.5rem 0;
    flex-wrap: nowrap;
}

.logo {
    flex-shrink: 1;
    min-width: 0;
}

.logo__link {
    display: flex;
    align-items: center;
}

.nav__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5rem 1.25rem;
    align-items: center;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__menu-cta {
    display: none;
}

.nav__link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.nav__link:hover {
    color: var(--color-clay-dark);
    border-bottom-color: var(--color-clay);
}

.nav__link.active {
    color: #C27E4A;
    border-bottom-color: #C27E4A;
}

/* Бургер (ТЗ: ≤768px); на широком экране не показываем */
.burger-menu-btn,
.nav__burger {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1003;
    position: relative;
}

.burger-menu-btn span,
.nav__burger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #C27E4A;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-menu-btn.active span:nth-child(1),
.nav__burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu-btn.active span:nth-child(2),
.nav__burger.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu-btn.active span:nth-child(3),
.nav__burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Мобильное меню и оверлей — только при ≤768px; !important против сторонних стилей/кэша */
.menu-overlay,
.mobile-menu {
    display: none !important;
}

.desktop-nav {
    display: contents;
}

/* Hero */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 100vh;
    padding-top: var(--header-h);
    background: linear-gradient(145deg, var(--color-sand) 0%, #F3E2CC 45%, var(--color-sand-deep) 100%);
    gap: 2rem;
}

.hero__content {
    flex: 1 1 320px;
    padding: 3rem 0 2rem;
}

.hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--color-text);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__image {
    flex: 1 1 280px;
    text-align: center;
}

.hero__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Гончарный круг */
.pottery-wheel {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    padding: 0.75rem;
    margin: 0 -0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.pottery-wheel:hover,
.pottery-wheel:focus-visible {
    background: rgba(255, 255, 255, 0.6);
    outline: none;
}

.pottery-wheel__disc {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #e8d4c4, var(--color-clay) 55%, #6b4423);
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(194, 126, 74, 0.35);
    transition: transform 0.5s ease;
}

.pottery-wheel.is-spinning .pottery-wheel__disc {
    animation: spin-disc 0.6s linear infinite;
}

.pottery-wheel__hint {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 16rem;
}

.pottery-wheel__counter {
    font-size: 0.85rem;
    color: var(--color-bamboo-dark);
    font-weight: 600;
    min-height: 1.25rem;
}

@keyframes spin-disc {
    to {
        transform: rotate(360deg);
    }
}

/* Секции */
.section__title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 1rem;
}

.section__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--color-clay), var(--color-bamboo));
}

.section__title--left {
    text-align: left;
}

.section__title--left::after {
    left: 0;
    transform: none;
}

.section__intro {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.section-cta {
    margin-top: 2rem;
    display: block;
    width: fit-content;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

/* О мастерской */
.about {
    padding: 4.5rem 0;
    background: var(--color-white);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about__lead,
.about__description {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.clay-magic {
    margin: 1.5rem 0 2rem;
}

.clay-magic__fact {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-bamboo);
    color: var(--color-text);
    min-height: 3rem;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--color-sand);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-clay-dark);
}

.feature p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.about__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Мастер-классы */
.workshops {
    padding: 4.5rem 0;
    background: var(--color-sand);
}

.workshops__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.workshop-card {
    background: var(--color-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.workshop-card__image {
    height: 220px;
    overflow: hidden;
}

.workshop-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.workshop-card:hover .workshop-card__image img {
    transform: scale(1.05);
}

.workshop-card__content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.workshop-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    color: var(--color-clay-dark);
}

.workshop-card__price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-bamboo-dark);
    margin-bottom: 0.75rem;
}

.workshop-card__description {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.workshop-card__details {
    list-style: none;
    margin-bottom: 1.5rem;
}

.workshop-card__details li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.workshop-card__details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-bamboo);
    font-weight: 700;
}

.workshop-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Квиз */
.mood-quiz {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.mood-quiz__title {
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.mood-quiz__subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.mood-quiz__q {
    font-weight: 600;
    margin-bottom: 1rem;
}

.mood-quiz__opts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mood-quiz__result {
    margin-top: 1.25rem;
    padding: 1rem;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--color-clay-dark);
    min-height: 3rem;
}

.is-hidden[hidden],
.is-hidden {
    display: none !important;
}

/* Сертификаты */
.certificates {
    padding: 4.5rem 0;
    background: var(--color-white);
}

.certificates--highlight {
    background: linear-gradient(180deg, #fff9f0 0%, var(--color-sand) 100%);
    border-top: 3px solid var(--color-clay);
    border-bottom: 3px solid var(--color-bamboo);
}

.certificates__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.certificates__lead {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cert-form {
    background: var(--color-white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.certificates__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certificates__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.hearts-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2000;
    overflow: hidden;
}

.hearts-layer .heart {
    position: absolute;
    top: -20px;
    font-size: 1.25rem;
    animation: fall-heart 3s linear forwards;
    opacity: 0.9;
}

@keyframes fall-heart {
    to {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Процесс */
.process {
    padding: 4.5rem 0;
    background: var(--color-white);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.process-step__number {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-clay), var(--color-clay-dark));
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--color-clay-dark);
}

.process-step p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.process__wheel-note {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Отзывы */
.reviews {
    padding: 4.5rem 0;
    background: var(--color-sand);
}

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 720px;
    margin: 0 auto 1rem;
}

.reviews-carousel__viewport {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius);
}

.reviews-carousel__track {
    list-style: none;
    display: flex;
    transition: transform 0.45s ease;
}

.reviews-carousel__slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.review-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.review-card__avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-clay), var(--color-bamboo));
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card__avatar--pair {
    font-size: 0.85rem;
    padding: 0.25rem;
    line-height: 1.2;
}

.review-card__text {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.review-card__author strong {
    display: block;
    color: var(--color-clay-dark);
    font-style: normal;
    margin-bottom: 0.25rem;
}

.review-card__author span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.reviews-carousel__btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-clay);
    background: var(--color-white);
    color: var(--color-clay);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.reviews-carousel__btn:hover {
    background: var(--color-clay);
    color: var(--color-white);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.reviews-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--color-sand-deep);
    cursor: pointer;
    padding: 0;
    transition: transform var(--transition), background var(--transition);
}

.reviews-dots button[aria-current="true"] {
    background: var(--color-clay);
    transform: scale(1.2);
}

/* О мастере */
.master {
    padding: 4.5rem 0;
    background: var(--color-white);
}

.master__content {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 3rem;
    align-items: center;
}

.master__image img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 1;
}

.master h3 {
    font-size: 1.5rem;
    color: var(--color-clay-dark);
    margin-bottom: 1rem;
}

.master__text p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.master__quote {
    margin: 1.25rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--color-bamboo);
    background: var(--color-sand);
    font-style: italic;
    color: var(--color-text);
}

.master__contact {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
}

.master__contact p {
    margin-bottom: 0.5rem;
}

/* Контакты */
.contacts {
    padding: 4.5rem 0;
    background: var(--color-sand);
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.contacts__grid--center {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
}

.contacts__grid--center .contacts__info {
    justify-items: stretch;
}

.contacts__info {
    display: grid;
    gap: 1.25rem;
}

.contact-item {
    background: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.contact-item h3 {
    font-size: 1rem;
    color: var(--color-bamboo-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--color-text-muted);
    margin: 0;
}

.contacts__map iframe {
    border-radius: var(--radius);
    width: 100%;
    min-height: 320px;
    background: var(--color-sand-deep);
}

.contacts__map-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
}

/* Футер */
.footer {
    background: linear-gradient(135deg, #3d2918 0%, var(--color-clay-dark) 100%);
    color: var(--color-sand);
    padding: 3rem 0 1.5rem;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.footer__tagline {
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.footer__link {
    color: var(--color-sand);
    text-decoration: none;
    font-weight: 500;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Формы */
.form__group {
    margin-bottom: 1rem;
}

.form__label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-sand-deep);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--color-white);
}

.date-picker {
    position: relative;
}

.date-picker .form__input {
    padding-right: 3rem;
}

.date-picker__btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid var(--color-sand-deep);
    background: var(--color-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.date-picker__btn:hover {
    transform: translateY(-52%);
    border-color: var(--color-bamboo);
}

.date-picker__btn:focus-visible {
    outline: none;
    border-color: var(--color-bamboo);
    box-shadow: 0 0 0 3px rgba(111, 143, 95, 0.2);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-bamboo);
    box-shadow: 0 0 0 3px rgba(111, 143, 95, 0.2);
}

.form__input.is-error,
.form__textarea.is-error {
    border-color: var(--color-clay);
    box-shadow: 0 0 0 3px rgba(194, 90, 60, 0.18);
}

.form__textarea {
    resize: vertical;
    min-height: 96px;
}

#formStatus {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cert-form button[type="submit"]:disabled,
.booking-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Модалка */
.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal[hidden] {
    display: none !important;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.45);
    cursor: pointer;
}

.modal__dialog {
    position: relative;
    z-index: 1;
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
    animation: modal-in 0.3s ease;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
}

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

.modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-sand);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text);
}

.modal__close:hover {
    background: var(--color-sand-deep);
}

.modal__title {
    margin-bottom: 0.5rem;
    padding-right: 2rem;
}

.modal__lead {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

/* Тост */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 4000;
    background: var(--color-text);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    max-width: 90vw;
    text-align: center;
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Панда */
.panda-helper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2500;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    background: linear-gradient(145deg, var(--color-sand) 0%, #fde9d4 100%);
    box-shadow: var(--shadow-md);
    font-size: 1.75rem;
    cursor: pointer;
    transition: transform var(--transition);
}

.panda-helper:hover {
    transform: scale(1.08);
}

.panda-helper__bubble {
    position: fixed;
    bottom: 92px;
    right: 24px;
    z-index: 2501;
    max-width: 280px;
    padding: 1rem 2.5rem 1rem 1rem;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-bamboo);
}

.panda-helper__bubble a {
    font-weight: 600;
}

.panda-helper__close {
    position: absolute;
    top: 0.35rem;
    right: 0.5rem;
    border: none;
    background: none;
    font-size: 1.35rem;
    cursor: pointer;
    line-height: 1;
    color: var(--color-text-muted);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Вспомогательные страницы (about, workshops, contacts) */
.page-hero {
    background: linear-gradient(145deg, var(--color-sand) 0%, #fde9d4 100%);
    padding: calc(var(--header-h) + 3rem) 0 3rem;
    text-align: center;
}

.page-hero__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.page-hero__subtitle {
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.about-detailed,
.equipment,
.workshops-detailed,
.formats,
.certificates-workshops,
.faq,
.gallery,
.contact-info,
.contact-form-section,
.alternative-contact {
    padding: 3rem 0;
    background: var(--color-white);
}

.form-section {
    background: linear-gradient(135deg, #FEF7E8 0%, #FDF3E5 100%);
    padding: 60px 0;
}

.container--form {
    max-width: 900px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #2D2A24;
    text-align: center;
    margin-bottom: 12px;
}

.form-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0 auto 32px;
    max-width: 640px;
}

.form-wrapper {
    border-radius: 24px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
}

.form-wrapper iframe {
    display: block;
    width: 100%;
    border: 0;
    background: #FFFFFF;
}

@media (max-width: 768px) {
    .form-section {
        padding: 40px 0;
    }

    .form-title {
        font-size: 24px;
    }

    .form-wrapper iframe {
        height: 700px;
    }
}

@media (max-width: 480px) {
    .form-wrapper iframe {
        height: 650px;
    }
}

.about-detailed:nth-child(even),
.workshop-filters + .workshops-detailed {
    background: var(--color-sand);
}

.about-detailed__content,
.master__content,
.certificates-workshops__content,
.contact-form__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-detailed p,
.workshop-detailed__description p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.workshops-detailed__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .workshops-detailed__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .workshops-detailed__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.workshop-detailed {
    --workshop-card-radius: 22px;
    --workshop-photo-radius: 20px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    background: #fffcf8;
    border-radius: var(--workshop-card-radius);
    overflow: hidden;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.02);
    transition: box-shadow var(--transition), transform var(--transition);
}

.workshop-detailed:hover {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.workshop-detailed__image {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f2e3d0;
    border-radius: var(--workshop-photo-radius) var(--workshop-photo-radius) 0 0;
}

.workshop-detailed__image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(45,45,45,0.07) 0%,
        transparent 35%
    );
    border-radius: inherit;
}

.workshop-detailed__media-btn {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
}

.workshop-detailed__media-btn:focus-visible {
    outline: 3px solid var(--color-bamboo);
    outline-offset: -3px;
}

.workshop-detailed__media-btn picture {
    display: block;
    width: 100%;
    height: 100%;
}

.workshop-detailed__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.workshop-detailed:hover .workshop-detailed__photo {
    transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
    .workshop-detailed,
    .workshop-detailed__photo {
        transition: none;
    }

    .workshop-detailed:hover {
        transform: none;
    }

    .workshop-detailed:hover .workshop-detailed__photo {
        transform: none;
    }
}

.workshop-detailed__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 16px 16px 20px;
}

.workshop-detailed__main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
}

.workshop-detailed__cta {
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
}

.workshop-detailed h2 {
    color: var(--color-clay-dark);
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    margin: 0;
}

.workshop-detailed__price {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-bamboo-dark);
    margin: 0;
}

.workshop-detailed__description {
    margin: 0;
}

.workshop-detailed__description p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.workshop-detailed__details {
    margin: 0;
}

.workshop-detailed__details h3 {
    font-size: 0.9rem;
    margin: 0 0 0.35rem;
    color: var(--color-clay-dark);
}

.workshop-detailed__details ul {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--color-text);
}

.workshop-detailed__details li {
    margin-bottom: 0.25rem;
}

.workshop-detailed__details li:last-child {
    margin-bottom: 0;
}

.workshop-detailed__footnote {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.workshop-detailed__special {
    margin: 0;
}

.workshop-detailed__special-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--color-text);
    padding: 0.65rem 0.75rem;
    background: rgba(194, 90, 60, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(194, 90, 60, 0.12);
}

/* Таблица форматов */
.formats__table-wrap {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow-x: auto;
    background: var(--color-white);
    border: 2px solid var(--color-sand-deep);
    box-shadow: var(--shadow-sm);
}

.formats__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.formats__table th,
.formats__table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-sand-deep);
    vertical-align: top;
    font-size: 0.95rem;
    color: var(--color-text);
}

.formats__table th {
    background: var(--color-sand);
    font-weight: 700;
    color: var(--color-clay-dark);
    position: sticky;
    top: 0;
}

.formats__format-note {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 0.88em;
    font-weight: 500;
    color: var(--color-text-muted, #6b5c55);
}

.formats__table tr:last-child td {
    border-bottom: none;
}

/* Мобильная вёрстка: вместо широкой таблицы — карточки по форматам */
@media (max-width: 768px) {
    .formats__table-wrap {
        overflow-x: visible;
        border: none;
        background: transparent;
        box-shadow: none;
        margin-top: 1.25rem;
    }

    .formats__table {
        min-width: 0;
        width: 100%;
        display: block;
    }

    .formats__table thead {
        display: none;
    }

    .formats__table tbody {
        display: block;
    }

    .formats__table tr {
        display: block;
        margin-bottom: 1rem;
        background: var(--color-white);
        border: 2px solid var(--color-sand-deep);
        border-radius: var(--radius);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
    }

    .formats__table tr:last-child {
        margin-bottom: 0;
    }

    .formats__table td {
        display: grid;
        grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
        gap: 0.65rem 0.75rem;
        align-items: start;
        padding: 0.6rem 0.85rem;
        border-bottom: 1px solid rgba(194, 126, 74, 0.18);
        font-size: 0.875rem;
        line-height: 1.45;
        word-break: break-word;
        hyphens: auto;
    }

    .formats__table tr td:last-child {
        border-bottom: none;
    }

    .formats__table td::before {
        font-weight: 700;
        color: var(--color-clay-dark);
        font-size: 0.78rem;
        line-height: 1.35;
        padding-top: 0.1em;
    }

    .formats__table td:nth-child(1)::before {
        content: "Формат";
    }

    .formats__table td:nth-child(2)::before {
        content: "Цена";
    }

    .formats__table td:nth-child(3)::before {
        content: "Длительность";
    }

    .formats__table td:nth-child(4)::before {
        content: "Участники";
    }

    .formats__table td:nth-child(5)::before {
        content: "Изделия";
    }

    .formats__table td:nth-child(6)::before {
        content: "Включено";
    }
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--color-clay);
    background: transparent;
    color: var(--color-clay-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-clay);
    color: var(--color-white);
}

.faq-item {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-clay-dark);
    text-align: left;
}

.faq-item__q:focus-visible {
    outline: 3px solid rgba(107, 142, 78, 0.25);
    outline-offset: 6px;
    border-radius: 10px;
}

.faq-item__icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-sand-deep);
    color: var(--color-text);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.faq-item__a {
    padding-top: 0.75rem;
    color: var(--color-text-muted);
}

.faq-item__a p {
    margin: 0;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--color-sand);
    border-color: var(--color-bamboo);
}

/* Оборудование */
.equipment__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.equipment-item {
    background: var(--color-white);
    border: 2px solid var(--color-sand-deep);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.equipment-item h3 {
    color: var(--color-clay-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.equipment-item p {
    color: var(--color-text-muted);
    margin: 0;
}

/* Галерея */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery__item {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 45, 0.72);
}

.lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 96vw);
    max-height: 88vh;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 0.75rem;
}

.lightbox__img {
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.06);
}

.lightbox__close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.lightbox__nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 600px) {
    .lightbox__dialog {
        grid-template-columns: 1fr;
    }
    .lightbox__nav {
        display: none;
    }
    .lightbox__close {
        top: -8px;
        right: -8px;
    }
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--color-clay-dark);
    margin-bottom: 0.5rem;
}

.contact-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.contact-card a {
    color: var(--color-clay-dark);
    font-weight: 600;
}

/* Планшет: сетки и hero, меню остаётся десктопным до 768px */
@media (max-width: 1024px) {
    /* Hero: картинка с теми же боковыми отступами, что и блок «О мастерской» (.container) */
    .hero__image {
        width: 100%;
        padding: 0 var(--page-gutter);
        box-sizing: border-box;
    }

    .hero__image picture,
    .hero__image img {
        width: 100%;
        max-width: 100%;
    }

    .about__content,
    .certificates__layout,
    .contacts__grid,
    .master__content,
    .about-detailed__content,
    .certificates-workshops__content,
    .contact-form__content {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .pottery-wheel {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section__title--left {
        text-align: center;
    }

    .section__title--left::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__content {
        flex-direction: column;
        text-align: center;
    }

    .footer__nav {
        justify-content: center;
    }

    .panda-helper__bubble {
        right: 16px;
        left: 16px;
        max-width: none;
        bottom: 88px;
    }
}

/* Бургер-меню по ТЗ: ≤768px, панель слева 280px, оверлей (разметка — сразу под <body>, не внутри .header) */
@media (max-width: 768px) {
    /* Жёстко убираем десктопный список из потока (иначе ссылки «сыпятся» под шапкой, как на goncharkapanda без обновлённого CSS) */
    .desktop-nav {
        display: none !important;
    }

    .header .nav__menu,
    #nav-menu-desktop {
        display: none !important;
    }

    .nav__actions {
        display: none !important;
    }

    /* Шапка ВЫШЕ оверлея: иначе fixed-оверлей (z-index 1001) перекрывает header (1000) и на части телефонов съедает тапы по бургеру */
    .header {
        z-index: 1100;
    }

    .burger-menu-btn,
    .nav__burger {
        display: flex !important;
        margin-left: auto;
        position: relative;
        z-index: 2;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .menu-overlay {
        display: block !important;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        pointer-events: none !important;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto !important;
    }

    .mobile-menu {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: min(280px, 92vw);
        max-width: 280px;
        height: 100%;
        height: 100dvh;
        background: #FEF7E8;
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.12);
        z-index: 1060;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding: 3.75rem 0 1.25rem;
        overflow-y: auto;
        box-sizing: border-box;
        pointer-events: none;
    }

    .mobile-menu.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .mobile-menu-close {
        position: absolute;
        top: 12px;
        right: 16px;
        background: transparent;
        border: none;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        color: #2D2A24;
        padding: 8px;
        z-index: 2;
    }

    .mobile-menu__list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu__list li {
        margin: 0;
    }

    .mobile-menu__link {
        font-family: var(--font-sans);
        font-size: 1.125rem;
        font-weight: 500;
        color: #2D2A24;
        text-decoration: none;
        display: block;
        padding: 16px 20px;
        transition: color 0.2s ease;
        border-bottom: 1px solid rgba(194, 126, 74, 0.15);
    }

    .mobile-menu__link:hover,
    .mobile-menu__link:focus-visible {
        color: #C27E4A;
    }

    .mobile-menu__link.active {
        color: #C27E4A;
    }

    .mobile-menu__cta-wrap {
        padding: 1.25rem 20px 1.5rem;
    }

    .mobile-menu__cta-wrap .btn {
        width: 100%;
    }

    body.nav-menu-open {
        overflow: hidden;
        touch-action: none;
    }
}

@media (max-width: 600px) {
    .about__features {
        grid-template-columns: 1fr;
    }

    .reviews-carousel__btn {
        display: none;
    }

    .hero__title {
        font-size: 1.65rem;
    }
}