﻿/* =========================================
   Champion Grooming - Main Stylesheet
   Color palette: black + gold (#c9a84c) + white
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --gold: #c9a84c;
    --gold-light: #e0c66e;
    --gold-dark: #a88838;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-muted: #aaaaaa;
    --border: rgba(201, 168, 76, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo img {
    height: 52px;
    width: auto;
}

.navbar-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1.2;
}

.navbar-logo-text span {
    display: block;
    font-size: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    border-radius: 3px;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links .btn-booksy {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 3px;
    font-weight: 700;
    margin-left: 0.8rem;
    letter-spacing: 1.5px;
    transition: background 0.25s, transform 0.2s;
}

.nav-links .btn-booksy:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    color: var(--black) !important;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 0.5rem;
}

.nav-social a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.25s;
}

.nav-social a:hover {
    color: var(--gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    transition: color 0.25s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .btn-booksy {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.8rem 2.5rem;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 80px;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 1.8rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 700px;
    line-height: 1.1;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ---- SECTIONS ---- */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-full {
    padding: 6rem 2rem;
    background: var(--dark2);
}

.section-full .section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title .gold {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

/* ---- SERVICES GRID ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    background: var(--border);
}

.service-card {
    background: var(--dark);
    padding: 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    background: var(--dark2);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---- REVIEWS ---- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.review-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---- MAP SECTION ---- */
.map-section {
    background: var(--dark);
    padding: 5rem 2rem;
}

.map-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.map-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.map-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.map-detail-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.map-detail-text strong {
    display: block;
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.map-embed {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(60%) invert(90%) hue-rotate(180deg);
}

/* ---- OPENING HOURS ---- */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hours-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
}

.hours-card .days {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.hours-card .time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--white);
}

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
    background: var(--dark);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.page-header h1 {
    position: relative;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    position: relative;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-header .breadcrumb a {
    color: var(--gold);
}

/* ---- ABOUT PAGE ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}

.about-content .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

/* ---- PRICING PAGE ---- */
.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.pricing-tab {
    padding: 0.6rem 1.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    border: 1px solid var(--border);
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
}

.pricing-tab.active,
.pricing-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.pricing-group {
    margin-bottom: 3rem;
}

.pricing-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.pricing-group-num {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    flex-shrink: 0;
}

.pricing-group-header h3 {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.pricing-table tr:hover {
    background: rgba(201, 168, 76, 0.04);
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
}

.pricing-table td:first-child {
    color: var(--white);
}

.pricing-table td:last-child {
    color: var(--gold);
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.pricing-note {
    background: rgba(201, 168, 76, 0.06);
    border-left: 3px solid var(--gold);
    padding: 1.2rem 1.5rem;
    border-radius: 0 4px 4px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* ---- COURSES PAGE ---- */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.course-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.course-card.featured {
    border-color: var(--gold);
}

.course-card.featured::before {
    content: 'POPULARNE';
    position: absolute;
    top: 1.2rem;
    right: -2rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
}

.course-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.course-duration {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.course-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.course-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin: 1.5rem 0;
    font-weight: 700;
}

.course-price span {
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-weight: 400;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.course-features li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.course-features li::before {
    content: 'âś“';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.8rem;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.contact-text p,
.contact-text a {
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.contact-map {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(60%) invert(90%) hue-rotate(180deg);
}

/* ---- BLOG PAGE ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-body {
    padding: 1.8rem;
}

.blog-card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
}

.blog-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.blog-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- REGULAMIN PAGE ---- */
.regulamin-content {
    max-width: 800px;
    margin: 0 auto;
}

.regulamin-content h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.reg-section {
    margin-bottom: 2.5rem;
}

.reg-section h3 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.reg-section ol {
    padding-left: 1.5rem;
}

.reg-section li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1.5rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom .gold {
    color: var(--gold);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {

    .about-grid,
    .contact-grid,
    .map-inner {
        grid-template-columns: 1fr;
    }

    .about-image {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .map-inner {
        gap: 2.5rem;
    }

    .map-embed {
        aspect-ratio: 16/9;
    }

    .contact-map iframe {
        height: 380px;
    }
}

@media (max-width: 768px) {

    /* Nav */
    .nav-links,
    .nav-social {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar-inner {
        height: 68px;
        padding: 0 1.2rem;
    }

    .navbar-logo img {
        height: 42px;
    }

    .mobile-menu {
        top: 68px;
    }

    .mobile-menu a {
        font-size: 1.8rem;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 1.2rem;
        padding-top: 68px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    .section {
        padding: 3.5rem 1.2rem;
    }

    .section-full {
        padding: 3.5rem 1.2rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Map section */
    .map-section {
        padding: 3rem 1.2rem;
    }

    .map-inner {
        gap: 2rem;
    }

    .map-embed {
        aspect-ratio: 4/3;
    }

    .map-info h2 {
        font-size: 1.6rem;
    }

    /* Page header */
    .page-header {
        padding: 7rem 1.2rem 2.5rem;
    }

    .page-header h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Courses */
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-map {
        height: 320px;
    }

    .contact-map iframe {
        height: 320px !important;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Pricing table */
    .pricing-table {
        font-size: 0.85rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.5rem;
    }

    /* wrap long breed names */
    .pricing-table td:first-child {
        word-break: break-word;
    }

    .pricing-note {
        font-size: 0.85rem;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Regulamin */
    .regulamin-content {
        font-size: 0.9rem;
    }

    .regulamin-content h2 {
        font-size: 1.4rem;
    }

    .regulamin-content h3 {
        font-size: 1rem;
    }

    /* Hours */
    .hours-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {

    .navbar-inner {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .hero-tag {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 0.35rem 0.9rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    /* Pricing - make table scrollable horizontally */
    .pricing-group {
        overflow-x: auto;
    }

    .pricing-table {
        min-width: 340px;
    }

    /* Map details stack tighter */
    .map-detail {
        gap: 0.8rem;
        margin-bottom: 1.1rem;
    }

    .map-detail-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .map-detail-text {
        font-size: 0.82rem;
    }

    /* Course cards */
    .course-card {
        padding: 1.5rem 1.2rem;
    }

    .course-price {
        font-size: 1.6rem;
    }

    /* Hours */
    .hours-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-main {
        padding: 3rem 1rem 2rem;
    }

    /* Blog card img area */
    .blog-card-img {
        height: 160px !important;
    }

    /* service-card image */
    .service-card-img {
        height: 160px !important;
    }

    /* Page header smaller */
    .page-header {
        padding: 6rem 1rem 2rem;
    }

    /* Section label hide line on tiny screens */
    .section-label::before {
        display: none;
    }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

.fade-in-1 {
    animation-delay: 0.1s;
}

.fade-in-2 {
    animation-delay: 0.2s;
}

.fade-in-3 {
    animation-delay: 0.35s;
}

.fade-in-4 {
    animation-delay: 0.5s;
}

/* ---- DIVIDER ---- */
.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0 2.5rem;
}