/* ============================================
   FOTOGRAFER WEB – site.css  (bundled)
   ============================================ */

/* ============================================
   BASE – tokens, typography, utilities
   ============================================ */

/* ---- Design tokens ---- */
:root {
    --c-ink:       #1a1a1a;   /* text, logo */
    --c-charcoal:  #3d3d3d;   /* headings */
    --c-steel:     #6b6b6b;   /* secondary text */
    --c-silver:    #9e9e9e;   /* captions, labels */
    --c-cloud:     #d0d0d0;   /* dividers, borders */
    --c-mist:      #efefef;   /* soft bg panels */
    --c-snow:      #fafaf9;   /* page bg (warm white) */
    --c-white:     #ffffff;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

    --radius-sm:  4px;
    --radius-md:  8px;
    --ease:       cubic-bezier(.4,0,.2,1);
    --transition: 0.3s var(--ease);
}

/* ---- Base ---- */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
    background: var(--c-white);
    color: var(--c-charcoal);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-ink);
}

p, li, td, label { font-family: var(--font-body); }

a { color: inherit; }

/* ---- Page title / section heading ---- */
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--c-ink);
}

.page-title--sm {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-steel);
    display: block;
    margin-bottom: 0.5rem;
}

/* ---- Section divider ---- */
.section-divider {
    width: 32px;
    height: 1px;
    background: var(--c-cloud);
    margin: 1.5rem auto;
}

/* ---- Fade-in animation ---- */
.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* ---- Utility ---- */
.tracking-wide   { letter-spacing: 0.12em; }
.letter-spacing-2 { letter-spacing: 0.15em; }
.font-display    { font-family: var(--font-display); }
.text-silver     { color: var(--c-silver); }
.honeypot        { display: none; }
.sr-only-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.pre-wrap        { white-space: pre-wrap; }

/* ---- Scroll progress bar ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--c-ink);
    z-index: 9999;
    pointer-events: none;
    transition: width 0.1s linear;
}

/* ---- Section divider draw-in ---- */
.divider-animate {
    width: 0;
    transition: width 0.6s var(--ease);
}
.divider-animate.visible {
    width: 32px;
}
.hero-divider.divider-animate.visible {
    width: 48px;
}

/* ---- Image reveal (clip-path) ---- */
.reveal-up {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal-up.visible {
    clip-path: inset(0);
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .fade-up,
    .reveal-up {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        transition: none !important;
    }
    .divider-animate {
        width: auto !important;
        transition: none !important;
    }
    .scroll-progress {
        transition: none !important;
    }
    .hero-reveal > * {
        opacity: 1 !important;
        animation: none !important;
    }
    .marquee-track {
        animation: none !important;
    }
}

/* ============================================
   LAYOUT – navbar, footer, breadcrumb, gallery wrap
   ============================================ */

/* ---- Skip link ---- */
.skip-link {
    position: absolute;
    top: -3rem;
    left: 0;
    background: var(--c-ink);
    color: var(--c-white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.85rem;
    z-index: 10001;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top 0.15s;
}
.skip-link:focus {
    top: 0;
}

/* ---- Navbar ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-white) !important;
    border-bottom: 1px solid var(--c-cloud);
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    transition: box-shadow var(--transition), transform 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Invisible spacer mirrors toggler width so brand stays centered on mobile */
.navbar-toggler-spacer {
    display: none;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 1px var(--c-cloud);
}

@media (max-width: 991px) {
    .navbar-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .navbar-toggler-spacer {
        display: block;
        width: 44px;
        flex-shrink: 0;
    }
    .navbar-brand {
        flex: 1 !important;
        display: flex !important;
        justify-content: center;
        margin: 0 !important;
    }
    .navbar-nav {
        width: 100%;
        align-items: center;
        padding: 0.5rem 0 0.75rem;
    }
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

@media (max-width: 991px) {
    .navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    color: var(--c-ink) !important;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 210px;
    height: 45px;
    display: block;
    overflow: visible;
    shape-rendering: geometricPrecision;
}

.brand-corner {
    fill: none;
    stroke: var(--c-ink);
    stroke-width: 2;
    stroke-linecap: square;
    vector-effect: non-scaling-stroke;
}

@media (max-width: 575px) {
    .brand-logo {
        width: 168px;
        height: 36px;
    }
}

.brand-corner-tl {
    animation: brand-corner-tl-enter 0.85s var(--ease) forwards;
}

.brand-corner-br {
    animation: brand-corner-br-enter 0.85s var(--ease) forwards;
}

.brand-logo-text {
    fill: var(--c-ink);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.07em;
    opacity: 0;
    animation: brand-text-enter 0.55s ease forwards;
    animation-delay: 0.28s;
}

@keyframes brand-corner-tl-enter {
    from { transform: translate(108px, 16px); }
    to { transform: translate(0, 0); }
}

@keyframes brand-corner-br-enter {
    from { transform: translate(-88px, -16px); }
    to { transform: translate(0, 0); }
}

@keyframes brand-text-enter {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .brand-corner-tl,
    .brand-corner-br,
    .brand-logo-text {
        animation: none;
    }

    .brand-logo-text {
        opacity: 1;
    }
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.1em;
    color: var(--c-steel) !important;
    padding: 0.4rem 0.75rem !important;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0.75rem; right: 0.75rem;
    height: 1px;
    background: var(--c-ink);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--c-ink) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* ---- Nav dropdown (hover) ---- */
.nav-dropdown-hover {
    position: relative;
}
.nav-dropdown-hover .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.2em;
    vertical-align: 0.12em;
    border: none;
    font-size: 0.5em;
    content: "\25BE";
    opacity: 0.5;
    transition: opacity var(--transition);
}
.nav-dropdown-hover:hover .dropdown-toggle::after {
    opacity: 1;
}
@media (min-width: 992px) {
    .nav-dropdown-hover:hover > .dropdown-menu,
    .nav-dropdown-hover:focus-within > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .nav-dropdown-hover .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid var(--c-cloud);
        border-radius: var(--radius-sm);
        background: var(--c-white);
        box-shadow: 0 4px 12px rgba(0,0,0,.06);
        padding: 0.3rem 0;
        min-width: 0;
        white-space: nowrap;
        animation: navDropIn .18s var(--ease);
    }
}
@media (max-width: 991px) {
    .nav-dropdown-hover .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0.25rem;
        text-align: center;
        width: 100%;
    }
    .nav-dropdown-hover .dropdown-divider {
        display: none;
    }
    .nav-dropdown-hover .dropdown-toggle::after {
        display: none;
    }
    .nav-dropdown-hover .dropdown-toggle {
        text-align: center;
        display: block;
        width: 100%;
    }
}
@keyframes navDropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown-hover .dropdown-item {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    text-align: center;
    color: var(--c-steel);
    padding: 0.3rem 1rem;
    transition: color var(--transition);
}
.nav-dropdown-hover .dropdown-item:hover,
.nav-dropdown-hover .dropdown-item:focus {
    color: var(--c-ink);
    background: transparent;
}
.nav-dropdown-hover .dropdown-divider {
    border-color: var(--c-cloud);
    margin: 0.2rem 0.6rem;
    opacity: 0.5;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-item,
.breadcrumb-item + .breadcrumb-item::before {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.5;
    vertical-align: baseline;
    color: var(--c-silver);
}

.breadcrumb-item a {
    color: var(--c-silver);
    text-decoration: none;
    transition: color var(--transition);
}
.breadcrumb-item a:hover { color: var(--c-ink); }
.breadcrumb-item.active { color: var(--c-steel); }

/* ---- Gallery wrap & header ---- */
.gallery-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 767px) {
    .gallery-wrap { padding: 0 0.75rem; }
}

.gallery-header {
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid var(--c-mist);
    margin-bottom: 0;
    text-align: center;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--c-white);
    border-top: 1px solid var(--c-mist);
    padding: 3.5rem 0 2rem;
    margin-top: 0rem;
}

.site-footer .footer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--c-ink);
    display: block;
    margin-bottom: 0.5rem;
}

.site-footer .footer-sub {
    font-size: 0.8rem;
    color: var(--c-silver);
    font-weight: 300;
}

.site-footer nav a {
    display: block;
    font-size: 0.82rem;
    color: var(--c-steel);
    text-decoration: none;
    padding: 0.2rem 0;
    transition: color var(--transition);
}

.site-footer nav a:hover { color: var(--c-ink); }

.footer-copyright {
    font-size: 0.78rem;
    color: var(--c-silver);
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--c-mist);
}

@media (max-width: 767px) {
    .site-footer .row {
        justify-content: center;
    }
    .site-footer .row > [class*="col"] {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

/* ============================================
   COMPONENTS – buttons, tiles, gallery, lightbox, forms
   ============================================ */

/* ---- Buttons ---- */
.btn-photo {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--c-ink);
    border: 1px solid var(--c-cloud);
    padding: 0 2rem;
    height: 2.75rem;
    line-height: 2.75rem;
    background: transparent;
    text-decoration: none;
    transition: all var(--transition);
    border-radius: 0;
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.btn-photo:hover {
    background: var(--c-ink);
    border-color: var(--c-ink);
    color: var(--c-white);
}

/* ---- Album tiles ---- */
.album-tile {
    display: block;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.album-tile-inner {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--c-mist);
    border-radius: var(--radius-sm);
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.album-tile:hover .album-cover {
    transform: scale(1.04);
}

.album-cover-placeholder {
    background: linear-gradient(135deg, var(--c-mist) 0%, var(--c-cloud) 100%);
}

.album-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20,20,20,0.78) 0%,
        rgba(20,20,20,0.15) 45%,
        transparent 70%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.album-tile-caption {
    padding-top: 0.75rem;
    text-align: center;
}

.album-tile-title {
    font-family: var(--font-display);
    color: var(--c-ink);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
    line-height: 1.2;
}

.album-tile-desc {
    color: var(--c-steel);
    font-size: 0.78rem;
    margin: 0;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.album-tile-date {
    color: var(--c-silver);
    font-size: 0.7rem;
    margin: 0 0 0.3rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
}

.album-description {
    color: var(--c-steel);
    font-size: 1rem;
}

/* Video overlay – centered play button */
.video-tile-overlay {
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.08);
    transition: background var(--transition);
}

.album-tile:hover .video-tile-overlay {
    background: rgba(0, 0, 0, 0.22);
}

/* Video play icon */
.video-play-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1;
    display: block;
    transition: color var(--transition), transform var(--transition);
    margin: 0;
}

.album-tile:hover .video-play-icon {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
}

/* ---- Gallery grid (detail page) ---- */
.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
}

.gallery-item {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.gallery-photo {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

.gallery-photo:focus-visible,
.wedding-gallery img:focus-visible,
.events-gallery img:focus-visible,
.folklore-gallery img:focus-visible,
.award-images img:focus-visible {
    outline: 2px solid var(--c-charcoal);
    outline-offset: -2px;
}

/* ---- Lightbox ---- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(252,252,252,0.97);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.lightbox.active {
    display: flex;
    animation: lb-fade .2s ease;
}

@keyframes lb-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 95vw;
    max-height: 92vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 8px 60px rgba(0,0,0,0.14);
    cursor: zoom-in;
}

.lightbox.zoomed .lightbox-content {
    overflow: auto;
    max-width: 100vw;
    max-height: 100vh;
    align-items: flex-start;
    justify-content: flex-start;
}

.lightbox.zoomed .lightbox-content img {
    max-width: none;
    max-height: none;
    cursor: zoom-out;
    box-shadow: none;
}

.lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.75rem;
    background: none;
    border: none;
    color: var(--c-charcoal);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
    opacity: 0.45;
    transition: opacity var(--transition), transform var(--transition);
    font-weight: 300;
}

.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-close:focus-visible {
    outline: 2px solid var(--c-charcoal);
    outline-offset: 3px;
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.04);
    border: 1px solid var(--c-cloud);
    color: var(--c-charcoal);
    font-size: 2rem;
    width: 2.75rem;
    height: 2.75rem;
    cursor: pointer;
    z-index: 10000;
    opacity: .5;
    transition: all var(--transition);
    line-height: 1;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover {
    opacity: 1;
    background: var(--c-ink);
    border-color: var(--c-ink);
    color: #fff;
}

/* ---- Video responsive ---- */
.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--c-mist);
    border-radius: var(--radius-md);
}

.video-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ---- Contact / Authors ---- */
.author-card {
    text-align: center;
}

.author-photo {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    filter: grayscale(18%);
    transition: filter 0.4s var(--ease);
    border-radius: var(--radius-sm);
}

.author-photo:hover { filter: grayscale(0%); }

.author-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--c-ink);
}

/* ---- Contact form ---- */
.form-control-photo {
    background: var(--c-white);
    border: 1px solid var(--c-cloud);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--c-charcoal);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control-photo:focus {
    outline: none;
    border-color: var(--c-charcoal);
    box-shadow: 0 0 0 3px rgba(60,60,60,0.07);
}

.form-label-photo {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-steel);
}

.alert-photo {
    background: var(--c-mist);
    border: 1px solid var(--c-cloud);
    border-radius: var(--radius-sm);
    color: var(--c-charcoal);
}

/* ---- Static text pages ---- */
.prose {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--c-charcoal);
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.prose p { margin-bottom: 1.25rem; }

.contact-page .prose {
    text-align: center;
}

/* ---- Contact page – enhanced typography ---- */

/* tagline under the title */
.contact-tagline {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--c-silver);
    margin: 0.5rem 0 0;
}

/* location on its own line, larger and bolder */
.contact-location-line {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--c-steel);
    margin: 0.2rem 0 0;
    text-transform: uppercase;
}

/* wider, gradient-fade divider for contact page only */
.contact-divider {
    width: 56px !important;
    height: 2px !important;
    background: linear-gradient(to right, transparent, var(--c-cloud) 25%, var(--c-cloud) 75%, transparent) !important;
    margin-top: 1.8rem !important;
    margin-bottom: 0 !important;
}

/* styled link in prose */
.contact-page .prose a {
    color: var(--c-charcoal);
    text-decoration: underline;
    text-decoration-color: var(--c-cloud);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition);
}
.contact-page .prose a:hover {
    text-decoration-color: var(--c-charcoal);
}

/* author name: italic serif */
.contact-page .author-name {
    font-style: italic;
    letter-spacing: 0.01em;
    margin-bottom: 0.15rem;
}

/* small role tag under author */
.author-role-tag {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-silver);
    margin-top: 0;
}



/* ============================================
   HOMEPAGE – hero, slider, marquee, showcase
   ============================================ */

/* ---- Hero reveal animation ---- */
@keyframes hero-line-enter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.hero-reveal > * {
    opacity: 0;
    animation: hero-line-enter 0.7s var(--ease) forwards;
}
.hero-reveal > *:nth-child(1) { animation-delay: 0.3s; }
.hero-reveal > *:nth-child(2) { animation-delay: 0.55s; }
.hero-reveal > *:nth-child(3) { animation-delay: 0.7s; }
.hero-reveal > *:nth-child(4) { animation-delay: 0.85s; }
.hero-reveal > *:nth-child(5) { animation-delay: 1.0s; }

/* ---- Hero (homepage) ---- */
.hero-section {
    min-height: calc(100vh - 72px);
    background: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(2rem, 8vw, 10rem);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 36%;
    background: var(--hero-strip-photo, var(--c-mist)) center/cover no-repeat;
    clip-path: polygon(16% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 60vh;
        justify-content: center;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        text-align: center;
    }
    .hero-section::before {
        content: none;
    }
    .hero-inner {
        max-width: 540px;
    }
    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 460px;
    padding: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--c-ink);
    margin-bottom: 1.25rem;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--c-steel);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--c-steel);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.hero-divider {
    width: 48px;
    height: 1px;
    background: var(--c-cloud);
    margin: 1.5rem 0;
}

/* ---- Homepage photo slider ---- */
.home-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--c-ink);
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.home-slide.active {
    opacity: 1;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-slide-prev,
.home-slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, .3);
    border: none;
    color: rgba(255, 255, 255, .85);
    font-size: 3rem;
    line-height: 1;
    width: 56px;
    height: 72px;
    cursor: pointer;
    transition: background .2s;
    padding: 0;
}

.home-slide-prev:hover,
.home-slide-next:hover {
    background: rgba(0, 0, 0, .6);
    color: #fff;
}

.home-slide-prev { left: 0; }
.home-slide-next { right: 0; }

.home-slide-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0;
    z-index: 10;
}

.home-slide-dot {
    box-sizing: content-box;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 10px;
    background-clip: content-box;
}

.home-slide-dot.active {
    background: rgba(255, 255, 255, 1);
    background-clip: content-box;
    transform: scale(1.3);
}

@media (max-width: 767px) {
    .home-slide-prev,
    .home-slide-next { width: 40px; height: 56px; font-size: 2.2rem; }
}

/* Slide caption with link */
.home-slide-caption {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    white-space: nowrap;
    max-width: calc(100% - 140px);
}

.home-slide-caption-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-ink);
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-slide-caption-btn {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--c-white);
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: 0 1.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 0;
    flex-shrink: 0;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.home-slide-caption-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--c-white);
}

@media (max-width: 575px) {
    .home-slide-caption {
        flex-direction: column;
        gap: 0.5rem;
        bottom: 2.5rem;
        text-align: center;
        max-width: calc(100% - 90px);
    }
}

/* ---- Photo marquee (homepage) ---- */
.photo-marquee {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
}

.marquee-track--left {
    animation: marquee-scroll-left 40s linear infinite;
}

.marquee-track--right {
    animation: marquee-scroll-right 45s linear infinite;
}

.photo-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    display: block;
    width: 320px;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    text-decoration: none;
    line-height: 0;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}

.marquee-item:hover img {
    transform: scale(1.06);
}

@keyframes marquee-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

@media (max-width: 767px) {
    .marquee-item {
        width: 220px;
        height: 150px;
    }

    .photo-marquee {
        padding: 2rem 0;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .marquee-item {
        width: 170px;
        height: 115px;
    }
}

/* ---- Photo showcase (homepage collage) ---- */
.showcase-section {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.showcase-text {
    flex: 0 0 auto;
    max-width: 280px;
}

.showcase-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--c-ink);
    margin-bottom: 0;
}

.showcase-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--c-steel);
}

.showcase-collage {
    flex: 1;
    position: relative;
    height: 520px;
    min-width: 0;
}

.showcase-card {
    position: absolute;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    text-decoration: none;
    line-height: 0;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}

.showcase-card:hover {
    transform: translateY(-8px) rotate(0deg) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.showcase-card:hover img {
    transform: scale(1.04);
}

/* Card 1: large, back-left */
.showcase-card--1 {
    width: 58%;
    height: 420px;
    top: 10px;
    left: 0;
    transform: rotate(-2deg);
    z-index: 1;
    transition-delay: 0s;
}

/* Card 2: medium, front-right, overlapping */
.showcase-card--2 {
    width: 48%;
    height: 340px;
    top: 80px;
    right: 0;
    transform: rotate(1.5deg);
    z-index: 2;
    transition-delay: 0.08s;
}

/* Card 3: small, bottom-center, topmost */
.showcase-card--3 {
    width: 34%;
    height: 240px;
    bottom: 0;
    left: 28%;
    transform: rotate(-1deg);
    z-index: 3;
    transition-delay: 0.15s;
}

/* Staggered fade-up for cards */
.showcase-card--1.fade-up { transition-delay: 0s; }
.showcase-card--2.fade-up { transition-delay: 0.15s; }
.showcase-card--3.fade-up { transition-delay: 0.3s; }

/* Reversed showcase — no extra flex needed, HTML order handles it */
.showcase-section--reversed {
    /* intentionally same as default; layout reversed via HTML source order */
}

.showcase-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--c-steel);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .showcase-section {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .showcase-text {
        max-width: none;
        margin-bottom: 1rem;
    }

    .showcase-text .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .showcase-collage {
        width: 100%;
        max-width: 520px;
        height: 380px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: var(--radius-md);
    }

    .showcase-card--1 {
        width: 60%;
        height: 300px;
        top: 0;
        left: 0;
        transform: rotate(0deg);
    }

    .showcase-card--2 {
        width: 48%;
        height: 240px;
        top: 55px;
        right: 0;
        transform: rotate(0deg);
    }

    .showcase-card--3 {
        width: 36%;
        height: 175px;
        bottom: 0;
        left: 26%;
        transform: rotate(0deg);
    }
}

@media (max-width: 575px) {
    .showcase-collage {
        height: 260px;
    }

    .showcase-card--1 {
        width: 62%;
        height: 210px;
    }

    .showcase-card--2 {
        width: 50%;
        height: 170px;
        top: 35px;
    }

    .showcase-card--3 {
        width: 38%;
        height: 130px;
    }
}

/* ---- Homepage services section ---- */
.home-services {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.home-service-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 340px;
    border: 1px solid var(--c-cloud);
    transition: box-shadow var(--transition), transform var(--transition);
}

.home-service-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.home-service-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.home-service-card:hover .home-service-bg {
    transform: scale(1.05);
}

.home-service-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 340px;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
    color: var(--c-white);
}

.home-service-card:not(:has(.home-service-bg)) .home-service-content {
    background: var(--c-mist);
    color: var(--c-ink);
    justify-content: center;
}

.home-service-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: inherit;
    margin-bottom: 0.4rem;
}

.home-service-text {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.home-service-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: inherit;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.home-service-card:hover .home-service-link {
    opacity: 1;
}

@media (max-width: 991px) {
    .home-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .home-service-card,
    .home-service-content {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .home-services {
        padding: 3rem 1.5rem;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-service-card,
    .home-service-content {
        min-height: 260px;
    }
}

/* ============================================
   PAGES – awards, blog comments, contact
   ============================================ */

/* ---- Awards ---- */
.awards-list {
    max-width: 900px;
    margin: 0 auto;
}

.awards-group {
    margin-bottom: 3rem;
}

.awards-group:last-child {
    margin-bottom: 0;
}

.awards-year-heading {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-cloud);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.award-card {
    transition: transform 0.28s ease;
}

.award-card:hover {
    transform: translateY(-3px);
}

.award-card::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--c-silver);
    margin-bottom: 0.7rem;
    transition: width 0.35s ease, background 0.35s ease;
}

.award-card:hover::before {
    width: 3rem;
    background: var(--c-charcoal);
}

.award-card--photo::before {
    display: none;
}

.award-card-body {
    padding: 0;
}

.award-placement {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-silver);
    margin-bottom: 0.2rem;
}

.award-contest {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.award-desc {
    font-size: 0.82rem;
    color: var(--c-steel);
    margin-top: 0.35rem;
    line-height: 1.5;
}

.award-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2em;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--c-steel);
    text-decoration: none;
    border-bottom: 1px solid var(--c-cloud);
    padding-bottom: 1px;
    transition: color 0.18s, border-color 0.18s;
}

.award-link:hover {
    color: var(--c-ink);
    border-color: var(--c-charcoal);
}

.award-images {
    display: block;
    margin-bottom: 0.65rem;
    overflow: hidden;
    border-radius: 3px;
}

.award-images img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.45s ease;
}

.award-card--photo:hover .award-images img {
    transform: scale(1.04);
}

.award-images:has(img + img) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.award-images:has(img + img) img {
    aspect-ratio: 1 / 1;
}

@media (max-width: 600px) {
    .awards-year-heading {
        font-size: 2.25rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Blog comments ---- */
.comments-section {
    max-width: 720px;
    margin: 0 auto;
}

.comments-heading {
    font-family: var(--font-display, Georgia, serif);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.comments-count {
    font-weight: 400;
    font-size: .9rem;
    color: var(--c-silver);
}

.comment-alert {
    display: none;
    font-size: .9rem;
    padding: .75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.comment-form {
    margin-bottom: 2rem;
}

.comment-fields {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.comment-input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: .5rem .75rem;
    font-size: .95rem;
}

textarea.comment-input {
    resize: vertical;
}

.comment-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.comment-header {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: .35rem;
}

.comment-author {
    font-size: .95rem;
}

.comment-date {
    font-size: .8rem;
    color: var(--c-silver);
}

.comment-text {
    font-size: .95rem;
    color: var(--c-steel);
    white-space: pre-line;
}

.no-comments-msg {
    color: var(--c-silver);
    font-size: .9rem;
}

/* ============================================
   WEDDING – svatební landing page
   ============================================ */

/* ---- Wedding hero ---- */
.wedding-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--c-ink);
}

.wedding-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--wedding-hero-img) center/cover no-repeat;
    opacity: 0.55;
}

.wedding-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 2rem;
}

.wedding-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--c-white);
    margin-bottom: 1rem;
}

.wedding-hero-title em {
    font-style: italic;
    font-weight: 400;
    display: block;
    font-size: 0.55em;
    opacity: 0.8;
    margin-top: 0.3em;
}

.wedding-hero .hero-divider {
    background: rgba(255, 255, 255, 0.4);
    margin-left: auto;
    margin-right: auto;
}

.wedding-hero .btn-photo {
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.wedding-hero .btn-photo:hover {
    background: var(--c-white);
    border-color: var(--c-white);
    color: var(--c-ink);
}

/* ---- Wedding sections ---- */
.wedding-section {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wedding-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-ink);
}

.wedding-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--c-steel);
}

.wedding-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-steel);
    margin-top: 1.5rem;
}

/* ---- Wedding process steps ---- */
.wedding-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.wedding-step {
    flex: 0 0 auto;
    text-align: center;
    max-width: 200px;
}

.wedding-step-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--c-silver);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.wedding-step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-charcoal);
    line-height: 1.4;
}

/* ---- Wedding benefits ---- */
.wedding-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.wedding-benefit {
    text-align: center;
}

.wedding-benefit-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 0.5rem;
}

.wedding-benefit-text {
    font-size: 0.9rem;
    color: var(--c-steel);
    line-height: 1.65;
}

/* ---- Wedding CTA ---- */
.wedding-cta {
    background: var(--c-snow);
    padding: 5rem 2rem;
    text-align: center;
}

/* ---- Wedding photo gallery (fullwidth strip) ---- */
.wedding-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.wedding-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .wedding-hero {
        min-height: 65vh;
    }

    .wedding-benefits {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .wedding-hero {
        min-height: 55vh;
    }

    .wedding-gallery {
        grid-template-columns: 1fr;
    }

    .wedding-gallery img {
        aspect-ratio: 16 / 9;
    }

    .wedding-section {
        padding: 3rem 1.5rem;
    }

    .wedding-cta {
        padding: 3rem 1.5rem;
    }

    .wedding-steps {
        gap: 1.5rem 2rem;
    }
}

/* ============================================
   EVENTS – kulturní akce landing page
   ============================================ */

/* ---- Events hero ---- */
.events-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--c-ink);
}

.events-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--events-hero-img) center/cover no-repeat;
    opacity: 0.55;
}

.events-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 2rem;
}

.events-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--c-white);
    margin-bottom: 1rem;
}

.events-hero-title em {
    font-style: italic;
    font-weight: 400;
    display: block;
    font-size: 0.55em;
    opacity: 0.8;
    margin-top: 0.3em;
}

.events-hero .hero-divider {
    background: rgba(255, 255, 255, 0.4);
    margin-left: auto;
    margin-right: auto;
}

.events-hero .btn-photo {
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.events-hero .btn-photo:hover {
    background: var(--c-white);
    border-color: var(--c-white);
    color: var(--c-ink);
}

/* ---- Events sections ---- */
.events-section {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.events-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-ink);
}

.events-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--c-steel);
}

.events-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-steel);
    margin-top: 1.5rem;
}

/* ---- Events process steps ---- */
.events-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.events-step {
    flex: 0 0 auto;
    text-align: center;
    max-width: 200px;
}

.events-step-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--c-silver);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.events-step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-charcoal);
    line-height: 1.4;
}

/* ---- Events benefits ---- */
.events-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.events-benefit {
    text-align: center;
}

.events-benefit-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 0.5rem;
}

.events-benefit-text {
    font-size: 0.9rem;
    color: var(--c-steel);
    line-height: 1.65;
}

/* ---- Events CTA ---- */
.events-cta {
    background: var(--c-snow);
    padding: 5rem 2rem;
    text-align: center;
}

/* ---- Events photo gallery (fullwidth strip) ---- */
.events-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.events-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .events-hero {
        min-height: 65vh;
    }

    .events-benefits {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .events-hero {
        min-height: 55vh;
    }

    .events-gallery {
        grid-template-columns: 1fr;
    }

    .events-gallery img {
        aspect-ratio: 16 / 9;
    }

    .events-section {
        padding: 3rem 1.5rem;
    }

    .events-cta {
        padding: 3rem 1.5rem;
    }

    .events-steps {
        gap: 1.5rem 2rem;
    }
}

/* ============================================
   ERROR PAGE – 404 / 500
   ============================================ */

.error-page {
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(7rem, 22vw, 14rem);
    font-weight: 600;
    line-height: 1;
    color: var(--c-cloud);
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.error-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-ink);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.error-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--c-steel);
}

.error-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--c-steel);
    margin: 1.25rem auto 2rem;
    max-width: 380px;
}

@media (max-width: 575px) {
    .error-page {
        padding: 3.5rem 1.5rem;
    }
}

/* ============================================
   SOCIAL ICONS – navbar + footer
   ============================================ */

/* ---- Navbar social ---- */
.navbar-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

@media (min-width: 992px) {
    .navbar-social {
        padding: 0;
        margin-left: 1rem;
    }
}

@media (max-width: 991px) {
    .navbar-social {
        justify-content: center;
        width: 100%;
        gap: 1.5rem;
    }
    .navbar-social-link {
        padding: 0.5rem;
    }
}

.navbar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-silver);
    transition: color var(--transition);
    line-height: 0;
}

.navbar-social-link:hover { color: var(--c-ink); }

.navbar-social-link svg {
    width: 15px;
    height: 15px;
}

/* ---- Footer social ---- */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    color: var(--c-silver);
    transition: color var(--transition);
    line-height: 0;
}

.footer-social-link:hover { color: var(--c-ink); }

.footer-social-link svg {
    width: 15px;
    height: 15px;
}
