<?php
declare(strict_types=1);

$phone = '+420 608 051 936';
$phoneHref = preg_replace('/\s+/', '', $phone);
?>
<!DOCTYPE html>
<html lang="cs">
<head>
    <meta charset="utf-8">
    <title>pudy.cz | Dočasná landing page</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="Web právě upravujeme. Zavolejte nám a domluvíme zaměření bez čekání.">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="assets/css/landing.css">
</head>
<body>
<div class="landing-shell">
    <div class="landing-backdrop"></div>
    <div class="landing-wrap">
        <div class="landing-topbar">
            <div>
                <p class="landing-kicker">Geodetická kancelář Stránský</p>
                <h1>Web právě upravujeme.</h1>
                <p>Ozvat se ale můžete hned. Zavolejte nám a domluvíme termín zaměření, další postup i vše potřebné kolem zakázky.</p>
            </div>
        </div>

        <div class="landing-grid landing-grid--single">
            <section class="landing-card landing-card--light">
                <header class="landing-card__header">
                    <div>
                        <p class="landing-domain">pudy.cz</p>
                        <div class="landing-tagline">Více jak 25 let zkušeností</div>
                    </div>
                </header>
                <div class="landing-card__body">
                    <div>
                        <div class="landing-chip">Web je v rekonstrukci</div>
                        <h2>Zavolejte nám.<br>Zaměříme vám to.</h2>
                        <p>Web právě upravujeme, ale ozvat se můžete hned. Domluvíme termín, přijedeme a vše potřebné zaměříme.</p>
                        <div class="landing-actions">
                            <a class="landing-button landing-button--warm" href="tel:<?= htmlspecialchars((string) $phoneHref, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8') ?>">
                                <span class="landing-icon">☎</span>
                                Zavolat teď
                            </a>
                            <div class="landing-pill">
                                <?= htmlspecialchars($phone, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8') ?>
                            </div>
                        </div>
                    </div>
                </div>
                <footer class="landing-card__footer">
                    Rychlé zaměření a domluva po telefonu.
                </footer>
            </section>
        </div>
    </div>
</div>
</body>
</html>
