/* Levin AM Frisør
   Black / Yellow luxury salon design
*/

:root {
    --black: #050505;
    --black-2: #0c0c0c;
    --black-3: #151515;
    --yellow: #ffd21f;
    --yellow-2: #f2b900;
    --yellow-soft: rgba(255, 210, 31, 0.16);
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.78);
    --white-muted: rgba(255, 255, 255, 0.58);
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--white);
    background: var(--black);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 10%, rgba(255, 210, 31, 0.13), transparent 30%),
        radial-gradient(circle at 86% 20%, rgba(255, 210, 31, 0.08), transparent 28%),
        linear-gradient(180deg, #050505, #0b0b0b 45%, #050505);
}

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

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

button {
    font: inherit;
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

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

.section {
    padding: 38px 0;
}

.section-dark,
.section-cream {
    color: var(--white);
    background: var(--black);
}

.section-heading {
    max-width: 790px;
    margin: 0 auto 20px;
    text-align: center;
}

.section-heading h2,
.about__text h2,
.prices__grid h2,
.contact__grid h2 {
    margin: 10px 0 16px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.section-heading p,
.about__text p,
.prices__grid p,
.contact__grid p {
    margin: 0;
    color: var(--white-soft);
    font-size: 1.05rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1.1;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: var(--black);
    box-shadow: 0 18px 38px rgba(255, 210, 31, 0.24);
}

.btn-light,
.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: var(--line);
    backdrop-filter: blur(14px);
}

.btn-ghost {
    background: rgba(0, 0, 0, 0.30);
    color: var(--white);
    border-color: rgba(255, 210, 31, 0.28);
    backdrop-filter: blur(14px);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.88);
    color: var(--white);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.top-status {
    background: rgba(255, 210, 31, 0.08);
    border-bottom: 1px solid rgba(255, 210, 31, 0.12);
    font-size: 0.92rem;
}

.top-status__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white-soft);
}

.status-pill strong {
    color: var(--white);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ff4b4b;
    box-shadow: 0 0 0 4px rgba(255, 75, 75, 0.16);
}

.status-pill.is-open .status-dot {
    background: #67e07c;
    box-shadow: 0 0 0 4px rgba(103, 224, 124, 0.17);
}

.top-status__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-soft);
}

.top-status__contact a:hover {
    color: var(--yellow);
}

.main-nav__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(255, 210, 31, 0.20);
}

.brand-link strong {
    display: block;
    color: var(--white);
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

.brand-link small {
    display: block;
    margin-top: -2px;
    color: var(--yellow);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
}

.site-menu a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--white-soft);
    font-size: 0.95rem;
    font-weight: 850;
}

.site-menu a:hover {
    color: var(--black);
    background: var(--yellow);
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
}

.language-switch a {
    min-width: 42px;
    padding: 8px 10px;
    border-radius: 999px;
    text-align: center;
    color: var(--white-soft);
    font-size: 0.84rem;
    font-weight: 950;
}

.language-switch a.active {
    color: var(--black);
    background: var(--yellow);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.menu-toggle__lines {
    position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle__lines::before {
    top: -6px;
}

.menu-toggle__lines::after {
    top: 6px;
}

/* Hero slider */

.hero {
    position: relative;
    min-height: 500px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--black);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.7s ease, transform 1.4s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: contrast(1.1) saturate(0.92);
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 72% 36%, transparent 0, rgba(0, 0, 0, 0.22) 24%, rgba(0, 0, 0, 0.92) 72%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.70) 44%, rgba(0, 0, 0, 0.26));
}

.hero__inner {
    padding: 36px 0 68px;
}

.hero__content {
    width: min(730px, 100%);
}

.hero h1 {
    margin: 18px 0 22px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 8vw, 6.9rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
}

.hero p {
    max-width: 620px;
    margin: 0;
    color: var(--white-soft);
    font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.hero__trust div {
    min-width: 118px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 210, 31, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
}

.hero__trust strong {
    display: block;
    color: var(--yellow);
    font-size: 1.32rem;
    line-height: 1.1;
}

.hero__trust span {
    display: block;
    margin-top: 4px;
    color: var(--white-muted);
    font-size: 0.88rem;
    font-weight: 750;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-dot.is-active {
    width: 36px;
    background: var(--yellow);
    border-color: var(--yellow);
}

/* Quick cards */

.quick-cards {
    position: relative;
    z-index: 4;
    margin-top: -30px;
    padding-bottom: 12px;
}

.quick-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quick-card {
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(255, 210, 31, 0.22);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.96), rgba(8, 8, 8, 0.96));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-card span {
    font-size: 1.5rem;
}

.quick-card h2 {
    margin: 12px 0 6px;
    color: var(--yellow);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.quick-card p {
    margin: 0;
    color: var(--white);
    font-size: 1.03rem;
    font-weight: 900;
}

/* Services */

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 205px;
    padding: 22px 20px;
    border: 1px solid rgba(255, 210, 31, 0.14);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.96), rgba(9, 9, 9, 0.96));
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(255, 210, 31, 0.12);
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 210, 31, 0.46);
    box-shadow: 0 30px 74px rgba(0, 0, 0, 0.48);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--yellow);
    color: var(--black);
    font-size: 1.7rem;
}

.service-card h3 {
    margin: 20px 0 10px;
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.service-card p {
    margin: 0 0 18px;
    color: var(--white-muted);
    font-size: 0.96rem;
}

.service-card strong {
    color: var(--yellow);
}

/* Prices */

.prices__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 22px;
    align-items: start;
}

.price-list {
    padding: 18px;
    border: 1px solid rgba(255, 210, 31, 0.16);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.96), rgba(8, 8, 8, 0.96));
    box-shadow: var(--shadow);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row span {
    color: var(--white);
    font-weight: 850;
}

.price-row strong {
    color: var(--yellow);
    font-size: 1.05rem;
}

/* About */

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 22px;
    align-items: center;
}

.about__text {
    max-width: 640px;
}

.about__text h3 {
    margin: 28px 0 10px;
    color: var(--yellow);
    font-size: 1.3rem;
}

.leader-card {
    overflow: hidden;
    border: 1px solid rgba(255, 210, 31, 0.18);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.98), rgba(5, 5, 5, 0.98));
    color: var(--white);
    box-shadow: var(--shadow);
}

.leader-card img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    object-position: center;
    padding: 16px;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 210, 31, 0.22), transparent 38%),
        linear-gradient(180deg, #161616, #050505);
}

.leader-card__body {
    padding: 24px;
}

.leader-card h3 {
    margin: 12px 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.leader-card p {
    color: var(--white-soft);
}

.leader-card__note {
    padding: 16px;
    border: 1px solid rgba(255, 210, 31, 0.14);
    border-radius: 16px;
    background: rgba(255, 210, 31, 0.08);
}

/* Gallery */

.gallery {
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 210, 31, 0.18), transparent 30%),
        radial-gradient(circle at 86% 84%, rgba(255, 210, 31, 0.10), transparent 26%);
}

.gallery .container {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 210, 31, 0.16);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
    cursor: zoom-in;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
}

.gallery-item::after {
    content: "＋";
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--black);
    font-size: 1.35rem;
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 4;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item:nth-child(9) {
    grid-column: span 6;
    grid-row: span 3;
}

.gallery-item:nth-child(10),
.gallery-item:nth-child(11),
.gallery-item:nth-child(12) {
    grid-column: span 2;
    grid-row: span 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    opacity: 0.72;
    filter: contrast(1.1);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.90);
}

.gallery-modal.is-open {
    display: grid;
}

.gallery-modal img {
    max-width: min(1100px, 96vw);
    max-height: 86vh;
    border: 2px solid rgba(255, 210, 31, 0.25);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.gallery-modal__close {
    position: fixed;
    right: 24px;
    top: 20px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 210, 31, 0.30);
    border-radius: 999px;
    background: rgba(255, 210, 31, 0.10);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

/* Reviews */

.review-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 410px);
    gap: 16px;
    overflow-x: auto;
    padding: 8px 4px 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.review-card {
    min-height: 260px;
    padding: 26px;
    border: 1px solid rgba(255, 210, 31, 0.14);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.96), rgba(8, 8, 8, 0.96));
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
    scroll-snap-align: start;
}

.stars {
    color: var(--yellow);
    letter-spacing: 0.12em;
}

.review-card p {
    color: var(--white-soft);
    font-size: 1rem;
}

.review-card strong {
    color: var(--yellow);
}

.center-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

/* Contact */

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
    gap: 22px;
    align-items: start;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.contact-card {
    padding: 30px;
    border: 1px solid rgba(255, 210, 31, 0.16);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.96), rgba(8, 8, 8, 0.96));
    box-shadow: var(--shadow);
}

.contact-card h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    letter-spacing: -0.03em;
}

.contact-card h3:not(:first-child) {
    margin-top: 26px;
}

.contact-card p {
    margin: 9px 0;
    color: var(--white-soft);
}

.contact-card a {
    color: var(--white);
    font-weight: 850;
}

.contact-card a:hover {
    color: var(--yellow);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hours-list li:last-child {
    border-bottom: 0;
}

.hours-list strong {
    color: var(--yellow);
}

/* Footer */

.site-footer {
    padding: 36px 0 22px;
    background: #000;
    color: var(--white);
    border-top: 1px solid rgba(255, 210, 31, 0.14);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 32px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.03em;
}

.site-footer p {
    margin: 8px 0;
    color: var(--white-muted);
}

.site-footer a:hover {
    color: var(--yellow);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 0.92rem;
}

/* Mobile call button */

.mobile-call-button {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
    display: none;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: var(--black);
    font-weight: 950;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
}

/* Responsive */

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

    .quick-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-auto-rows: 110px;
    }

    .gallery-item:nth-child(n) {
        grid-column: span 4;
        grid-row: span 3;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(9) {
        grid-column: span 8;
        grid-row: span 4;
    }
}

@media (max-width: 900px) {
    .top-status__inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 9px 0;
        gap: 6px;
    }

    .top-status__contact {
        flex-wrap: wrap;
        font-size: 0.86rem;
    }

    .main-nav__inner {
        min-height: 68px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-menu {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        border: 1px solid rgba(255, 210, 31, 0.18);
        border-radius: 22px;
        background: rgba(5, 5, 5, 0.98);
        box-shadow: var(--shadow);
    }

    .site-menu.is-open {
        display: flex;
    }

    .site-menu a {
        padding: 13px 14px;
    }

    .hero {
        min-height: 485px;
    }

    .hero__inner {
        padding: 32px 0 62px;
    }

    .prices__grid,
    .about__grid,
    .contact__grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .about__text {
        max-width: none;
    }

    .gallery-grid {
        grid-auto-rows: 105px;
    }

    .gallery-item:nth-child(n),
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(9) {
        grid-column: span 6;
        grid-row: span 3;
    }

    .review-slider {
        grid-auto-columns: minmax(280px, 86vw);
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 26px, var(--container));
    }

    .section {
        padding: 32px 0;
    }

    .brand-link strong {
        font-size: 0.94rem;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .language-switch a {
        min-width: 38px;
        padding: 7px 8px;
    }

    .hero {
        min-height: 485px;
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.96)),
            linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.30));
    }

    .hero__actions,
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__trust div {
        min-width: 0;
        padding: 12px;
    }

    .hero__trust strong {
        font-size: 1.08rem;
    }

    .hero__trust span {
        font-size: 0.78rem;
    }

    .hero-dots {
        bottom: 28px;
    }

    .quick-cards {
        margin-top: -24px;
    }

    .quick-cards__grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .quick-card {
        min-height: auto;
    }

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

    .gallery-item:nth-child(n),
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(9) {
        grid-column: auto;
        grid-row: auto;
        min-height: 330px;
    }

    .leader-card img {
        height: 360px;
    }

    .site-footer__bottom {
        flex-direction: column;
    }

    .mobile-call-button {
        display: flex;
    }

    body {
        padding-bottom: 82px;
    }
}

@media (max-width: 420px) {
    .main-nav__inner {
        gap: 10px;
    }

    .brand-link span:last-child {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

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


/* Compact professional rhythm */
.services,
.prices,
.about,
.gallery,
.reviews,
.contact {
    scroll-margin-top: 112px;
}

.service-card h3 {
    margin-top: 15px;
}

.quick-card h2 {
    margin-top: 8px;
}

.leader-card {
    position: relative;
}

.leader-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 210, 31, 0.18);
    border-radius: 24px;
    pointer-events: none;
    z-index: 2;
}

.leader-card img {
    border-bottom: 1px solid rgba(255, 210, 31, 0.16);
}

@media (max-width: 680px) {
    .section-heading {
        margin-bottom: 22px;
    }

    .hero__inner {
        padding-top: 44px;
        padding-bottom: 82px;
    }

    .leader-card img {
        height: 390px;
        padding: 12px;
    }
}


/* v2: shorter hero, tighter sections, better trust cards */
.hero h1 {
    max-width: 680px;
    font-size: clamp(2.85rem, 7vw, 5.45rem);
}

.hero p {
    max-width: 560px;
}

.hero__actions--single {
    margin-top: 24px;
}

.btn-hero-call {
    min-width: 230px;
    min-height: 54px;
    font-size: 1rem;
}

.hero__trust {
    margin-top: 24px;
    max-width: 720px;
}

.hero__trust div {
    position: relative;
    overflow: hidden;
    min-width: 190px;
    flex: 1;
    padding: 16px 16px 15px;
    border: 1px solid rgba(255, 210, 31, 0.28);
    background:
        linear-gradient(135deg, rgba(255, 210, 31, 0.13), rgba(255, 255, 255, 0.05)),
        rgba(0, 0, 0, 0.34);
}

.hero__trust div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    border-radius: 99px;
    background: var(--yellow);
}

.hero__trust strong {
    color: var(--white);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.hero__trust span {
    color: var(--white-soft);
    line-height: 1.35;
}

.quick-cards__grid {
    gap: 12px;
}

.quick-card {
    border-color: rgba(255, 210, 31, 0.18);
}

.service-grid {
    gap: 12px;
}

.section-heading h2,
.about__text h2,
.prices__grid h2,
.contact__grid h2 {
    margin-bottom: 10px;
}

/* v2: more organized about section */
.about__grid {
    align-items: stretch;
}

.about__text {
    max-width: none;
    padding: 28px;
    border: 1px solid rgba(255, 210, 31, 0.15);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(21, 21, 21, 0.92), rgba(7, 7, 7, 0.92));
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
}

.about__text h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.about__text p + h3 {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.leader-card {
    height: 100%;
}

.leader-card img {
    height: 390px;
}

/* v2: gallery modal arrows */
.gallery-modal {
    grid-template-columns: minmax(44px, 90px) minmax(0, auto) minmax(44px, 90px);
    gap: 14px;
}

.gallery-modal img {
    grid-column: 2;
}

.gallery-modal__nav {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 210, 31, 0.32);
    border-radius: 999px;
    background: rgba(255, 210, 31, 0.12);
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.gallery-modal__nav:hover {
    transform: scale(1.06);
    background: rgba(255, 210, 31, 0.22);
}

.gallery-modal__prev {
    grid-column: 1;
    justify-self: end;
}

.gallery-modal__next {
    grid-column: 3;
    justify-self: start;
}

/* v2: customer review carousel */
.review-slider {
    display: flex;
    gap: 16px;
    overflow: hidden;
    padding: 8px 4px 18px;
    scroll-snap-type: none;
}

.review-card {
    flex: 0 0 calc((100% - 32px) / 3);
    min-height: 230px;
    transform: translateX(0);
    transition: transform 0.68s cubic-bezier(.2,.8,.2,1);
}

.review-slider.is-moving .review-card {
    transform: translateX(calc(-100% - 16px));
}

.reviews .section-heading {
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .hero__trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero__trust div {
        min-width: 0;
    }

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

    .gallery-modal {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }

    .gallery-modal img {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .gallery-modal__prev {
        grid-column: 1;
        grid-row: 2;
        justify-self: end;
    }

    .gallery-modal__next {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .hero {
        min-height: 500px;
    }

    .hero__inner {
        padding-top: 28px;
        padding-bottom: 58px;
    }

    .hero h1 {
        font-size: 2.72rem;
    }

    .hero p {
        font-size: 1.02rem;
    }

    .hero__trust {
        margin-top: 18px;
    }

    .hero__trust div {
        padding: 13px 14px;
    }

    .review-card {
        flex-basis: 100%;
    }

    .about__text {
        padding: 22px;
    }

    .leader-card img {
        height: 360px;
    }
}
