@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url(fonts/CormorantGaramond-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url(fonts/CormorantGaramond-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url(fonts/CormorantGaramond-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url(fonts/CormorantGaramond-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(fonts/Inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(fonts/Inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   KRJ LEGAL — krj-legal.sk
   Smer „Chambers“. Bez JS, bez externých požiadaviek.
   ============================================================ */

:root {
  --bg:      #0C0D0F;
  --line:    #1C1E22;
  --text:    #E8E4DC;
  --text-2:  #9C978B;
  --muted:   #8A8578;
  --voice:   #C6BFAF;
  --brass:   #B08D57;

  --pad:     3.5rem;
  --serif:   'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

a:focus-visible,
:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 3px;
}

/* --- spoločné prvky ---------------------------------------- */

.eyebrow {
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* --- hlavička ---------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .6rem 2rem;
  padding: 1.1rem var(--pad);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .24em;
  color: var(--brass);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 2.2rem;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--text); }

/* --- hero --------------------------------------------------- */

.hero { padding: 6rem var(--pad) 5rem; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 9vw, 3.875rem);
  line-height: 1.05;
  letter-spacing: .14em;
  margin: 1.4rem 0 1.6rem;
}

.hero p.lede {
  max-width: 33em;
  margin: 0;
  color: var(--text-2);
  line-height: 1.75;
}

/* --- hlavičky sekcií ---------------------------------------- */

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 2.6rem var(--pad) 1.2rem;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.625rem;
  margin: 0;
  letter-spacing: .01em;
}

.section-intro { padding: .4rem var(--pad) 2.2rem; }

.section-intro p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.35rem, 4.2vw, 1.6875rem);
  line-height: 1.45;
  color: #D6D0C4;
  max-width: 24em;
  margin: 0;
}

/* --- oblasti ------------------------------------------------ */

.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 0;
  list-style: none;
}

.area {
  padding: 1.9rem 1.8rem 2.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area:nth-child(3n) { border-right: 0; }

.area .num {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--brass);
}

.area h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4375rem;
  line-height: 1.2;
  margin: .7rem 0 .25rem;
}

.area .en {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.area p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--voice);
  margin: .9rem 0 0;
}

/* --- profil -------------------------------------------------- */

.profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 1rem var(--pad) 3.4rem;
}

.profile p {
  margin: 0 0 1.1rem;
  color: var(--text-2);
  font-size: .9375rem;
  line-height: 1.75;
}

.facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding-top: .3rem;
}

.facts dt {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}

.facts dd {
  font-family: var(--serif);
  font-size: 1.1875rem;
  margin: 0;
}

/* --- kontakt ------------------------------------------------- */

.contact {
  padding: 3rem var(--pad) 3.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5rem;
}

.contact a {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.6875rem;
  text-decoration: none;
  border-bottom: 1px solid #33352F;
  padding-bottom: 2px;
  margin-top: .7rem;
}

.contact a:hover { border-bottom-color: var(--brass); }

/* --- pätička ------------------------------------------------- */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .4rem 2rem;
  padding: 1.2rem var(--pad);
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--muted);
}

/* --- mobil --------------------------------------------------- */

@media (max-width: 900px) {
  .areas { grid-template-columns: 1fr; }
  .area { border-right: 0; }
  .profile { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  :root { --pad: 1.4rem; }

  .site-header { justify-content: flex-start; padding-top: .9rem; padding-bottom: .9rem; }
  .site-nav { gap: 1.4rem; width: 100%; }
  .hero { padding: 3.4rem var(--pad) 2.8rem; }
  .contact { gap: 1.6rem 3rem; }
  .contact a { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
