/* U dědečka Vojtěcha — sdílené styly nad rámec Tailwind CDN */

:root {
  --pine-950: #10201a;
  --pine-900: #17302690;
  --amber-500: #d99a4e;
  --amber-400: #e2ab63;
  --amber-300: #edc489;
  --cream-50: #f7f2e8;
}

html { scroll-behavior: smooth; }
body { font-family: "Inter", ui-sans-serif, system-ui, sans-serif; color: #2a2420; background: #f4efe4; }
.font-serif { font-family: "Cormorant Garamond", Georgia, serif; }

.nav-link { font-size: 0.82rem; padding: 0.5rem 0.6rem; color: #e8e0d0; border-radius: 0.375rem; transition: color .2s; white-space: nowrap; }
.nav-link:hover, .nav-link--active { color: var(--amber-300); }

.btn-amber { display: inline-block; background: var(--amber-500); color: #10201a; font-weight: 600; padding: 0.65rem 1.4rem; border-radius: 0.4rem; transition: background .2s, transform .1s; }
.btn-amber:hover { background: var(--amber-400); }
.btn-amber:active { transform: translateY(1px); }
.btn-ghost { display: inline-block; background: transparent; color: #ece4d4; border: 1px solid rgba(237,196,137,.4); padding: 0.65rem 1.4rem; border-radius: 0.4rem; transition: border-color .2s, color .2s; }
.btn-ghost:hover { border-color: var(--amber-300); color: var(--amber-300); }
.btn-outline-dark { display: inline-block; border: 1px solid #173026; color: #173026; padding: 0.65rem 1.5rem; border-radius: 0.4rem; font-weight: 500; transition: background .2s, color .2s; }
.btn-outline-dark:hover { background: #173026; color: #f4efe4; }

.footer-h { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--amber-400); margin-bottom: 1.1rem; }
.social { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(237,196,137,.3); border-radius: 999px; color: #e8e0d0; transition: all .2s; }
.social:hover { color: var(--amber-300); border-color: var(--amber-300); }

.eyebrow { font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--amber-500); font-weight: 600; }

.modal { position: fixed; inset: 0; z-index: 200; background: rgba(10,18,14,.72); display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal--open { display: flex; }
.modal-box { background: #fbf8f1; border-radius: 14px; padding: 2.25rem; max-width: 42rem; width: 100%; max-height: 82vh; overflow-y: auto; position: relative; box-shadow: 0 24px 70px rgba(0,0,0,.45); }
.modal-x { position: absolute; top: 12px; right: 18px; background: none; border: none; font-size: 26px; line-height: 1; color: #a8a29e; cursor: pointer; }
.modal-x:hover { color: #2a2420; }

.duotone { filter: saturate(.9) contrast(1.02); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--amber-400); outline-offset: 2px; }
