/* ============================================================
   KÁMEN RŮŽE – style.css
   Tmavý kamenický web, responzivní, moderní
   ============================================================ */

/* ── Reset & proměnné ────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg:          #1a1a1a;
    --bg-alt:      #222222;
    --bg-card:     #2b2b2b;
    --border:      #383838;
    --text:        #e6e6e6;
    --text-sec:    #999999;
    --text-muted:  #5a5a5a;
    --accent:      #b8bfc8;
    --accent-hov:  #cdd2d8;
    --metal-light: #e8ebef;
    --metal-mid:   #b8bfc8;
    --metal-dark:  #8d96a3;
    --nav-h:       68px;
    --pad-section: 88px;
    --radius:      4px;
    --ease:        0.3s ease;
    --font:        'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.75;
    font-size: 16px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--ease);
}
a:hover { color: var(--accent-hov); }

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

ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Logo ────────────────────────────────────────────────── */
.logo-icon {
    height: 32px;
    width: auto;
    display: block;
}
.logo-stone {
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--text);
    font-size: 1.25rem;
}
.logo-rose {
    font-weight: 300;
    letter-spacing: 0.28em;
    color: var(--accent);
    font-size: 1.25rem;
    margin-left: 0.12em;
}

/* ── Header ──────────────────────────────────────────────── */
.header {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    height: var(--nav-h);
    background: rgba(26, 26, 26, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.55); }

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

/* Nav links */
.nav-list {
    display: flex;
    gap: 36px;
}
.nav-link {
    color: var(--text-sec);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
    transition: color var(--ease);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}
.nav-link:hover,
.nav-link.active {
    color: var(--text);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Burger */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    line-height: 0;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform var(--ease), opacity var(--ease);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-h);
    background:
        linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.52)),
        url('../img/logo/slate.jpg') center / cover no-repeat;
    position: relative;
    overflow: hidden;
}
/* Hrubá kamenná textura – coarse grain */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.25' numOctaves='8' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
    opacity: .85;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 0;
}
/* Jemná povrchová textura – fine grain */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n2)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: .50;
    pointer-events: none;
    mix-blend-mode: soft-light;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 24px;
}

.hero-logo {
    margin-bottom: 28px;
    line-height: 1.05;
    user-select: none;
}
.hero-logo-img {
    max-width: clamp(220px, 55vw, 520px);
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-tagline {
    font-size: clamp(.9rem, 2.2vw, 1.15rem);
    color: var(--text-sec);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 44px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons – kovový stříbrný odstín jako logo */
.btn {
    display: inline-block;
    padding: 13px 34px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(
        180deg,
        var(--metal-light) 0%,
        var(--metal-mid) 52%,
        var(--metal-dark) 100%
    );
    color: var(--bg);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 4px 16px rgba(0, 0, 0, 0.4);
}
.btn-primary:hover {
    background: linear-gradient(
        180deg,
        #f2f4f7 0%,
        var(--accent-hov) 52%,
        var(--metal-mid) 100%
    );
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.45) inset,
        0 8px 24px rgba(0, 0, 0, 0.45);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35) inset,
        0 2px 8px rgba(0, 0, 0, 0.3);
}
.btn-outline {
    background: linear-gradient(
        180deg,
        rgba(232, 235, 239, 0.22) 0%,
        rgba(184, 191, 200, 0.14) 100%
    );
    color: var(--metal-light);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.btn-outline:hover {
    background: linear-gradient(
        180deg,
        rgba(232, 235, 239, 0.36) 0%,
        rgba(184, 191, 200, 0.22) 100%
    );
    color: var(--metal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.btn-outline:active {
    transform: translateY(0);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35) inset,
        0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.2s infinite;
    z-index: 1;
}
.scroll-arrow {
    display: block;
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    opacity: .55;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Claim sekce ────────────────────────────────────────── */
.claim-block {
    margin-top: 52px;
    padding-top: 44px;
    border-top: 1px solid var(--border);
    max-width: 720px;
}
.claim-quote {
    margin: 0 0 18px;
    padding: 0 0 0 22px;
    border: none;
    border-left: 3px solid var(--accent);
}
.claim-quote p {
    margin: 0;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--metal-light);
    font-style: italic;
}
.claim-body {
    padding-left: 25px;
    font-size: 0.975rem;
    color: var(--text-sec);
    line-height: 1.85;
}

/* ── Sekce – společné ────────────────────────────────────── */
.section { padding: var(--pad-section) 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--text);
    text-align: center;
    margin-bottom: 10px;
}
.section-line {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 0 auto 28px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-sec);
    font-size: 1.02rem;
    margin-bottom: 48px;
}

/* ── O nás ────────────────────────────────────────────────── */
.about-grid {
    display: block;
}
.about-text p {
    color: var(--text-sec);
    margin-bottom: 18px;
    font-size: 1.02rem;
}
.about-text p:last-child { margin-bottom: 0; }



/* ── Vzorník materiálů ─────────────────────────────────────── */
.vzornik-content p {
    color: var(--text-sec);
    margin-bottom: 18px;
    font-size: 1.02rem;
}
.vzornik-content p:last-child { margin-bottom: 0; }

/* ── Vzorník – seznam vzorků ──────────────────────────────── */
.samples-list {
    list-style: none;
    padding: 0;
    margin: 48px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.sample-item {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.97rem;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
}
.sample-item:hover,
.sample-item:focus-visible {
    background: var(--bg-hover, color-mix(in srgb, var(--accent) 10%, var(--bg-card)));
    border-left-color: var(--accent);
    outline: none;
    transform: translateX(3px);
}
.sample-item-icon {
    flex-shrink: 0;
    opacity: .55;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 1px;
}

/* ── Vzorník – lightbox ───────────────────────────────────── */
.sample-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sample-lightbox[hidden] { display: none; }
.sample-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .80);
    backdrop-filter: blur(4px);
}
.sample-lb-dialog {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: min(92vw, 720px);
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
/* Přepíšeme aspect-ratio stage-wrapu uvnitř dialogu na 4:3 */
.sample-lb-dialog .gallery-stage-wrap {
    aspect-ratio: 4 / 3;
}
.sample-lb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.sample-lb-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.sample-lb-close {
    background: rgba(20,20,20,.82);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.sample-lb-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #111;
}
.sample-lb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sample-lb-dots {
    display: flex;
    gap: 10px;
}
.sample-lb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .2s, border-color .2s;
}
.sample-lb-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* ── Služby ───────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px 28px;
    transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,.35);
}
.service-icon {
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    color: var(--accent);
    opacity: .8;
}
.service-icon svg {
    width: 100%;
    height: 100%;
}
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: .02em;
}
.service-card p {
    color: var(--text-sec);
    font-size: 0.92rem;
    line-height: 1.72;
}

/* ── Galerie ──────────────────────────────────────────────── */
.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Hlavní slider */
.gallery-main {
    position: relative;
    display: flex;
    align-items: stretch;
}
/* Wrapper zajišťuje aspect-ratio + ořez obrázku, aniž by ořízl šipky */
.gallery-stage-wrap {
    flex: 1;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: var(--radius);
}
.gallery-stage {
    position: absolute;
    inset: 0;
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .45s ease;
}
.gallery-stage img.visible { opacity: 1; }

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-muted);
    font-size: .88rem;
    letter-spacing: .05em;
    background: linear-gradient(135deg, #242424, #1e1e1e);
    text-align: center;
    padding: 20px;
}

/* Šipky */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(20,20,20,.82);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background var(--ease), border-color var(--ease), color var(--ease);
}
/* Šipky jsou uvnitř .gallery-stage-wrap → nikdy neopustí hranice slideru */
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #111;
}

/* Info (popisek + recenze) */
.gallery-info {
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: opacity .2s ease;
}
.gallery-info.fading { opacity: 0; }
.gallery-caption {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}
.gallery-caption:empty { margin-bottom: 0; }

.gallery-review {}
.review-stars {
    color: var(--accent);
    font-size: .95rem;
    letter-spacing: 3px;
    margin-bottom: 6px;
}
.review-text {
    color: var(--text-sec);
    font-size: .93rem;
    font-style: italic;
    line-height: 1.65;
}
.review-author {
    color: var(--text-muted);
    font-size: .82rem;
    margin-top: 8px;
}

/* Počítadlo */
.gallery-count {
    text-align: right;
    color: var(--text-muted);
    font-size: .82rem;
    letter-spacing: .06em;
}

/* Miniatury */
.gallery-thumbs-wrapper {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-card);
    padding-bottom: 4px;
}
.gallery-thumbs-wrapper::-webkit-scrollbar { height: 4px; }
.gallery-thumbs-wrapper::-webkit-scrollbar-track { background: var(--bg-card); border-radius: 2px; }
.gallery-thumbs-wrapper::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.gallery-thumbs {
    display: flex;
    gap: 9px;
    padding: 3px 0;
    width: max-content;
}

.gallery-thumb {
    width: 112px;
    height: 74px;
    flex-shrink: 0;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    padding: 0;
    transition: border-color var(--ease), transform var(--ease);
}
.gallery-thumb:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.gallery-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c2c2c, #232323);
    color: var(--text-muted);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    font-variant-numeric: tabular-nums;
}

/* ── Kontakt ──────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info {
    display: grid;
    gap: 20px;
}
.contact-item {
    display: block;
    padding: 22px 26px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color var(--ease), background var(--ease);
}
.contact-item:hover {
    border-color: var(--accent);
    background: var(--bg);
}
.contact-item-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-sec);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.contact-item-value {
    display: block;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
    word-break: break-word;
}
.contact-item:hover .contact-item-value {
    color: var(--accent-hov);
}
.contact-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.contact-lead {
    margin: 0 0 28px;
    padding: 0 0 0 22px;
    border: none;
    border-left: 3px solid var(--accent);
}
.contact-lead p {
    margin: 0;
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--text);
    font-style: italic;
}
.contact-body > p {
    color: var(--text-sec);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 18px;
}
.contact-note {
    margin: 0 0 18px;
}
.contact-note p {
    margin: 0;
    color: var(--text-sec);
    font-size: 1.02rem;
    line-height: 1.75;
}
.contact-note strong {
    color: var(--text);
    font-weight: 600;
}
.contact-closing {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: #111;
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px;
}

.footer-logo { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-stone { font-size: 1.6rem; }
.footer-logo .logo-rose  { font-size: 1.6rem; }
.footer-logo-icon { height: 40px; width: auto; }
.footer-brand-text p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.72;
    margin-bottom: 0;
}
.footer-brand-lead {
    color: var(--text-sec);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer h3 {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 20px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .97rem;
    color: var(--text-sec);
}
.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
}
.contact-icon svg {
    width: 100%;
    height: 100%;
}
.contact-list a {
    color: var(--text);
    transition: color var(--ease);
}
.contact-list a:hover { color: var(--accent); }

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-nav-list a {
    color: var(--text-sec);
    font-size: .93rem;
    transition: color var(--ease);
}
.footer-nav-list a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: .83rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-credit { font-size: .78rem; }
.footer-credit a {
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-color: var(--border);
    transition: color var(--ease);
}
.footer-credit a:hover { color: var(--accent); }

/* ── Responzivita ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { gap: 44px; }
}

@media (max-width: 768px) {
    :root { --pad-section: 60px; }
    .gallery-info { height: auto; min-height: 0; padding: 12px 16px; }

    /* Mobile nav */
    .nav-list {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(22, 22, 22, 0.98);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 8px 0 16px;
        gap: 0;
    }
    .nav-list.open { display: flex; }
    .nav-link {
        padding: 13px 24px;
        display: block;
        font-size: .88rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-list li:last-child .nav-link { border-bottom: none; }
    .nav-link::after { display: none; }
    .nav-burger { display: flex; }

    /* Layout adjustments */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 220px; text-align: center; }

    .gallery-nav { width: 40px; height: 40px; }
    .gallery-nav svg { width: 16px; height: 16px; }
    .gallery-prev { left: 6px; }
    .gallery-next { right: 6px; }
}

@media (max-width: 480px) {
    .gallery-thumb { width: 88px; height: 58px; }

    .hero-stone { letter-spacing: .14em; }
    .hero-rose  { letter-spacing: .25em; }
}
