/* =========================================================
   DANKAN — RENOWACJE STUDNI
   Kompletny styl strony
   ========================================================= */

:root {
    --orange: #f58220;
    --orange-light: #ff9a3d;
    --orange-dark: #c95b00;
    --black: #050505;
    --black-soft: #0d0d0e;
    --graphite: #151517;
    --white: #ffffff;
    --off-white: #f5f4f1;
    --text: #242428;
    --muted: #77777e;
    --line: rgba(255, 255, 255, 0.11);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.23);
    --radius: 22px;
    --header-offset: 150px;
    --transition: 260ms cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.no-scroll {
    overflow: hidden;
}

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

button,
a {
    font: inherit;
}

button {
    border: 0;
}

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

::selection {
    background: var(--orange);
    color: var(--white);
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 1000000;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 20px;
}

.scroll-progress {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100000;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
    box-shadow: 0 0 18px rgba(245, 130, 32, 0.55);
    transform: scaleX(0);
    transform-origin: left center;
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.site-header {
    position: relative;
    z-index: 10000;
}

.contact-strip {
    position: relative;
    background: #020202;
    border-bottom: 1px solid rgba(245, 130, 32, 0.45);
}

.contact-strip::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 32%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
}

.contact-strip-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-label {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.28em;
}

.contact-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.17rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition:
        color var(--transition),
        transform var(--transition);
}

.contact-number svg {
    width: 20px;
    fill: var(--orange);
}

.contact-number:hover {
    color: var(--orange-light);
    transform: translateX(3px);
}

.website-address {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    transition: color var(--transition);
}

.website-address:hover {
    color: var(--orange);
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(7, 7, 8, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        background var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.main-nav.is-scrolled {
    background: rgba(4, 4, 5, 0.95);
    border-color: rgba(245, 130, 32, 0.2);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.28);
}

.nav-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-logo {
    width: clamp(250px, 28vw, 430px);
    flex: 0 1 auto;
}

.nav-logo img {
    width: 100%;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.42));
    transition:
        transform var(--transition),
        filter var(--transition);
}

.nav-logo:hover img {
    transform: translateY(-2px);
    filter: drop-shadow(0 14px 34px rgba(245, 130, 32, 0.2));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 54px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    position: relative;
    display: block;
    padding: 12px 2px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    cursor: pointer;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.hero {
    position: relative;
    min-height: calc(100svh - 156px);
    isolation: isolate;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 40%, rgba(245, 130, 32, 0.16), transparent 28%),
        linear-gradient(120deg, #050505 0%, #111113 52%, #080808 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 160px;
    pointer-events: none;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.92), transparent);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 88%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.hero-orb {
    position: absolute;
    z-index: -4;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.hero-orb-one {
    width: 620px;
    height: 620px;
    right: -160px;
    top: -180px;
    background: rgba(245, 130, 32, 0.09);
    animation: orbFloatOne 10s ease-in-out infinite;
}

.hero-orb-two {
    width: 420px;
    height: 420px;
    left: -160px;
    bottom: -150px;
    background: rgba(245, 130, 32, 0.05);
    animation: orbFloatTwo 13s ease-in-out infinite;
}

@keyframes orbFloatOne {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-45px, 45px, 0) scale(1.08); }
}

@keyframes orbFloatTwo {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(50px, -35px, 0); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0;
    box-shadow: 0 0 10px rgba(245, 130, 32, 0.55);
    animation: particleRise linear infinite;
}

@keyframes particleRise {
    0% {
        opacity: 0;
        transform: translate3d(0, 50px, 0) scale(0.5);
    }
    18% { opacity: 0.5; }
    82% { opacity: 0.22; }
    100% {
        opacity: 0;
        transform: translate3d(36px, -520px, 0) scale(1.35);
    }
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
    padding: clamp(82px, 10vw, 150px) 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.eyebrow,
.section-kicker {
    margin: 0 0 20px;
    color: var(--orange);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow span {
    width: 42px;
    height: 3px;
    background: var(--orange);
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(4rem, 6.4vw, 7.2rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.hero h1 strong {
    color: var(--orange);
    font-weight: 900;
}

.hero-description {
    max-width: 660px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.button {
    position: relative;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    overflow: hidden;
    padding: 15px 28px;
    border-radius: 10px;
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.button::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: skewX(-20deg);
    transition: left 650ms ease;
}

.button:hover::before {
    left: 150%;
}

.button:hover {
    transform: translateY(-4px);
}

.button-primary {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-light));
    box-shadow: 0 16px 36px rgba(245, 130, 32, 0.24);
}

.button-primary:hover {
    box-shadow: 0 24px 48px rgba(245, 130, 32, 0.34);
}

.button-primary svg,
.text-link svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(26, 26, 28, 0.96);
}

.button-secondary:hover {
    border-color: rgba(245, 130, 32, 0.62);
    background: rgba(245, 130, 32, 0.08);
}

.hero-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 42px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-details i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
}

.hero-brand {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.hero-logo {
    position: relative;
    z-index: 3;
    width: min(100%, 900px);
    max-height: 370px;
    object-fit: contain;
    filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.48));
}

.brand-glow {
    position: absolute;
    z-index: 0;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.16), transparent 68%);
    filter: blur(22px);
    pointer-events: none;
    will-change: transform;
}

.brand-ring {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(245, 130, 32, 0.13);
    pointer-events: none;
}

.brand-ring-one {
    width: 560px;
    height: 560px;
    animation: ringPulse 7s ease-in-out infinite;
}

.brand-ring-two {
    width: 430px;
    height: 430px;
    border-color: rgba(255, 255, 255, 0.065);
    animation: ringPulse 7s 1.2s ease-in-out infinite reverse;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(0.96); opacity: 0.28; }
    50% { transform: scale(1.04); opacity: 0.72; }
}

.hero-phone-card {
    position: absolute;
    right: 5%;
    bottom: 3%;
    z-index: 4;
    min-width: 290px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 4px solid var(--orange);
    background: rgba(7, 7, 8, 0.94);
    box-shadow: var(--shadow);
}

.hero-phone-card span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.hero-phone-card a {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 800;
    transition: color var(--transition);
}

.hero-phone-card a:hover {
    color: var(--orange);
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 23px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    padding-top: 8px;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 20px;
}

.mouse i {
    width: 4px;
    height: 8px;
    border-radius: 10px;
    background: var(--orange);
    animation: wheelMove 1.8s ease-in-out infinite;
}

@keyframes wheelMove {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

/* ---------------------------------------------------------
   SHARED SECTIONS
   --------------------------------------------------------- */

.section {
    position: relative;
    padding: clamp(95px, 10vw, 150px) 0;
}

.about,
.gallery-section,
.callout,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto clamp(55px, 7vw, 90px);
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--text);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-heading > p:last-child {
    max-width: 700px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
}

.section-heading-dark h2 {
    color: var(--white);
}

.section-heading-dark > p:last-child {
    color: rgba(255, 255, 255, 0.58);
}

/* ---------------------------------------------------------
   ABOUT / DESCRIPTION
   --------------------------------------------------------- */

.about {
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0, rgba(245, 130, 32, 0.08), transparent 30%),
        var(--off-white);
    color: var(--text);
}

.about::before {
    content: "DANKAN";
    position: absolute;
    right: -20px;
    top: 120px;
    color: rgba(0, 0, 0, 0.025);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(8rem, 19vw, 21rem);
    font-weight: 900;
    line-height: 0.8;
    pointer-events: none;
}

.about-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: clamp(38px, 7vw, 100px);
    align-items: stretch;
    margin-bottom: clamp(65px, 8vw, 110px);
}

.about-main {
    padding: clamp(35px, 5vw, 68px);
    border-left: 7px solid var(--orange);
    background: var(--white);
    box-shadow: 0 24px 70px rgba(15, 15, 15, 0.08);
}

.large-text {
    margin: 0 0 24px;
    color: var(--text);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(2rem, 3.2vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
}

.about-main > p:not(.large-text) {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.95;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 32px;
    color: var(--orange-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.text-link svg {
    transition: transform var(--transition);
}

.text-link:hover svg {
    transform: translateX(7px);
}

.about-panel {
    padding: clamp(32px, 4vw, 50px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
        var(--graphite);
    color: var(--white);
    box-shadow: var(--shadow);
}

.panel-number {
    color: var(--orange);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}

.about-panel p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.75;
}

.panel-line {
    height: 1px;
    margin: 27px 0;
    background: linear-gradient(90deg, rgba(245, 130, 32, 0.75), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    padding: 34px 29px;
    border: 1px solid rgba(0, 0, 0, 0.075);
    background: rgba(255, 255, 255, 0.84);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.service-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.06);
    transition: transform 500ms ease;
}

.service-card:hover {
    z-index: 2;
    transform: translateY(-12px);
    border-color: rgba(245, 130, 32, 0.32);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.13);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover::after {
    transform: scale(1.25);
}

.service-number {
    position: absolute;
    right: 24px;
    top: 22px;
    color: rgba(0, 0, 0, 0.06);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1;
}

.service-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border-radius: 14px;
    background: var(--orange);
    box-shadow: 0 13px 30px rgba(245, 130, 32, 0.24);
}

.service-icon svg {
    width: 36px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.75;
}

/* ---------------------------------------------------------
   GALLERY
   --------------------------------------------------------- */

.gallery-section {
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        #09090a;
    background-size: 70px 70px;
}

.gallery-glow {
    position: absolute;
    left: -300px;
    bottom: -300px;
    z-index: -1;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.11), transparent 68%);
}

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

.gallery-item {
    position: relative;
    grid-column: span 4;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #111;
    text-align: left;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.gallery-item-wide {
    grid-column: span 8;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 700ms cubic-bezier(.2, .8, .2, 1),
        filter 500ms ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent 64%),
        linear-gradient(120deg, rgba(245, 130, 32, 0.1), transparent 50%);
    opacity: 0.76;
    transition: opacity var(--transition);
}

.gallery-item:hover {
    z-index: 3;
    transform: translateY(-7px);
    border-color: rgba(245, 130, 32, 0.38);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.48);
}

.gallery-item:hover img {
    transform: scale(1.075);
    filter: saturate(1.12) contrast(1.04);
}

.gallery-item:hover::after {
    opacity: 0.95;
}

.gallery-overlay {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
}

.gallery-overlay strong {
    color: var(--white);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.gallery-overlay small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.gallery-note {
    max-width: 760px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 42px auto 0;
    padding: 19px 23px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.64);
}

.gallery-note span {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
}

.gallery-note p {
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.7;
}

.gallery-unavailable {
    max-width: 820px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0 auto;
    padding: clamp(32px, 6vw, 62px);
    border: 1px solid rgba(245, 130, 32, 0.32);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.gallery-unavailable svg {
    flex: 0 0 auto;
    width: 76px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-unavailable strong,
.gallery-unavailable span {
    display: block;
}

.gallery-unavailable strong {
    color: var(--white);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.gallery-unavailable span {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------------------------------------------------------
   CALLOUT
   --------------------------------------------------------- */

.callout {
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.24), transparent 50%),
        linear-gradient(135deg, var(--orange-dark), var(--orange-light));
}

.callout::before {
    content: "DANKAN";
    position: absolute;
    right: -30px;
    bottom: -55px;
    color: rgba(255, 255, 255, 0.08);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(7rem, 17vw, 17rem);
    font-weight: 900;
    line-height: 0.8;
}

.callout-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.callout .section-kicker {
    color: rgba(255, 255, 255, 0.75);
}

.callout h2 {
    margin: 0;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: clamp(3.3rem, 5.3vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.callout p {
    margin: 18px 0 0;
    font-size: 1.05rem;
}

.callout-actions {
    min-width: 360px;
    display: grid;
    gap: 12px;
}

.callout-phone {
    min-width: 360px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(5, 5, 5, 0.92);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.24);
    transition:
        transform var(--transition),
        background var(--transition);
}

.callout-phone:hover {
    transform: translateY(-7px);
    background: #000;
}

.callout-phone span {
    display: block;
    margin-bottom: 5px;
    color: var(--orange);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.24em;
}

.callout-phone strong {
    color: var(--white);
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    white-space: nowrap;
}

.callout-email strong {
    font-size: clamp(1rem, 1.55vw, 1.34rem);
    overflow-wrap: anywhere;
    white-space: normal;
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.site-footer {
    background: #040405;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 1fr;
    gap: 70px;
    padding: 88px 0 65px;
}

.footer-brand img {
    width: min(490px, 100%);
    max-height: 100px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 600px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.83rem;
    letter-spacing: 0.04em;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.88rem;
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.footer-column .footer-phone {
    color: var(--orange);
    font-size: 1.18rem;
    font-weight: 800;
}

.footer-bottom {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.75rem;
}

.footer-bottom p {
    margin: 0;
}

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

.footer-bottom a:hover {
    color: var(--orange);
}

/* ---------------------------------------------------------
   LIGHTBOX
   --------------------------------------------------------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    align-items: center;
    padding: 45px 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(17px);
    transition:
        opacity 300ms ease,
        visibility 300ms ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 1400px;
    max-height: calc(100vh - 100px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.lightbox-content img {
    max-width: 100%;
    max-height: calc(100vh - 155px);
    margin: auto;
    object-fit: contain;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
    transform: scale(0.94);
    opacity: 0;
    transition:
        transform 380ms cubic-bezier(.2, .8, .2, 1),
        opacity 300ms ease;
}

.lightbox.is-open .lightbox-content img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-content figcaption {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.lightbox-close,
.lightbox-arrow {
    cursor: pointer;
    color: var(--white);
    background: transparent;
    transition:
        color var(--transition),
        transform var(--transition);
}

.lightbox-close {
    position: absolute;
    right: 28px;
    top: 20px;
    z-index: 2;
    width: 52px;
    height: 52px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

.lightbox-arrow {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    font-size: 3rem;
    line-height: 1;
}

.lightbox-arrow:hover {
    color: var(--orange);
    border-color: rgba(245, 130, 32, 0.45);
    transform: scale(1.08);
}

/* ---------------------------------------------------------
   MOBILE CALL BUTTON
   --------------------------------------------------------- */

.mobile-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9000;
    min-height: 56px;
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 18px 45px rgba(245, 130, 32, 0.38);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
}

.mobile-call svg {
    width: 22px;
    fill: currentColor;
}

/* ---------------------------------------------------------
   REVEALS
   --------------------------------------------------------- */

[data-reveal] {
    opacity: 0;
    transition:
        opacity 850ms cubic-bezier(.2, .8, .2, 1),
        transform 850ms cubic-bezier(.2, .8, .2, 1);
}

[data-reveal="up"] {
    transform: translateY(55px);
}

[data-reveal="left"] {
    transform: translateX(-55px);
}

[data-reveal="right"] {
    transform: translateX(55px);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1180px) {
    :root {
        --header-offset: 135px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .hero-copy {
        max-width: 900px;
        margin-inline: auto;
    }

    .eyebrow,
    .hero-actions,
    .hero-details {
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-brand {
        min-height: 400px;
    }

    .hero-logo {
        max-height: 300px;
    }

    .hero-phone-card {
        right: 50%;
        bottom: -10px;
        transform: translateX(50%);
    }

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

    .footer-grid {
        grid-template-columns: 1.45fr 0.7fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(100% - 34px, 1380px);
    }

    .contact-strip-inner {
        min-height: 58px;
    }

    .website-address {
        display: none;
    }

    .nav-inner {
        min-height: 80px;
    }

    .nav-logo {
        width: min(310px, calc(100% - 80px));
    }

    .nav-logo img {
        max-height: 58px;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .nav-links {
        position: absolute;
        left: 17px;
        right: 17px;
        top: calc(100% + 8px);
        display: grid;
        gap: 0;
        padding: 13px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        border: 1px solid rgba(255, 255, 255, 0.09);
        background: rgba(5, 5, 6, 0.98);
        box-shadow: var(--shadow);
        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 16px 14px;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 68px 0 90px;
    }

    .hero-brand {
        min-height: 350px;
    }

    .brand-ring-one {
        width: 410px;
        height: 410px;
    }

    .brand-ring-two {
        width: 315px;
        height: 315px;
    }

    .brand-glow {
        width: 500px;
        height: 500px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item,
    .gallery-item-wide {
        grid-column: span 1;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .callout-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .callout-phone {
        min-width: 0;
        width: 100%;
    }

    .callout-actions {
        min-width: 0;
        width: 100%;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 620px) {
    :root {
        --header-offset: 125px;
    }

    .contact-top {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .contact-label {
        font-size: 0.62rem;
    }

    .contact-number {
        font-size: 0.98rem;
    }

    .contact-number svg {
        width: 17px;
    }

    .section {
        padding: 68px 0;
    }

    .hero-inner {
        padding: 56px 0 72px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 13vw, 4.15rem);
        line-height: 0.96;
    }

    .hero-description {
        margin-top: 24px;
        line-height: 1.7;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-details {
        gap: 9px;
        font-size: 0.63rem;
    }

    .hero-brand {
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 18px;
    }

    .hero-logo {
        max-height: 165px;
    }

    .brand-ring-one {
        width: 290px;
        height: 290px;
    }

    .brand-ring-two {
        width: 230px;
        height: 230px;
    }

    .brand-glow {
        width: 360px;
        height: 360px;
    }

    .hero-phone-card {
        position: static;
        transform: none;
        width: min(92%, 310px);
        min-width: 0;
        margin-inline: auto;
        padding: 15px 17px;
    }

    .scroll-indicator {
        display: none;
    }

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

    .service-card {
        min-height: 0;
        padding: 28px 24px;
    }

    .service-icon {
        margin-bottom: 26px;
    }

    .about-main {
        padding: 30px 24px;
        border-left-width: 4px;
    }

    .large-text {
        font-size: clamp(1.85rem, 9vw, 2.45rem);
    }

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

    .gallery-overlay {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-note {
        align-items: flex-start;
    }

    .gallery-unavailable {
        min-height: 0;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .gallery-unavailable svg {
        width: 62px;
    }

    .callout-phone strong {
        white-space: normal;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0 90px;
    }

    .lightbox {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        padding: 55px 7px 20px;
    }

    .lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 2rem;
    }

    .lightbox-close {
        right: 12px;
        top: 5px;
    }

    .lightbox-content figcaption {
        font-size: 0.68rem;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 28px, 1380px);
    }

    .contact-label {
        display: none;
    }

    .contact-top {
        justify-content: center;
    }

    .contact-number {
        font-size: 0.94rem;
    }

    .nav-inner {
        min-height: 72px;
        gap: 18px;
    }

    .nav-logo {
        width: min(230px, calc(100% - 66px));
    }

    .hero-details {
        justify-content: center;
        row-gap: 12px;
        font-size: 0.58rem;
    }

    .hero-copy {
        width: 100%;
        text-align: center;
    }

    .eyebrow,
    .hero-actions {
        justify-content: center;
    }

    .eyebrow {
        flex-wrap: wrap;
        font-size: 0.64rem;
        letter-spacing: 0.13em;
    }

    .hero h1 {
        overflow-wrap: anywhere;
        font-size: clamp(2.3rem, 10.5vw, 3rem);
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .button {
        min-height: 54px;
        padding-inline: 18px;
        font-size: 0.75rem;
    }

    .hero-phone-card {
        width: 100%;
    }
}

/* ---------------------------------------------------------
   REDUCED MOTION / ACCESSIBILITY
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
